-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "eags-extended-widgets",
"version": "0.0.1",
"description": "A collection of cool widgets made using AGS",
"main": "dist/Index.js",
"scripts": {
"clean": "npx rimraf ./dist",
"build": "npm run clean && npx tsc && npm run tsc-alias",
"start": "node scripts/start.js",
"tsc-alias": "npx tsc scripts/replacer.ts --module commonjs --target es2017 && npx tsc-alias",
"dev": "npm run build && npx tsc-watch --onSuccess \"npx nodemon\"",
"dev:end": "npx tsc-alias && npm run start",
"watch:sass": "node scripts/watch-sass.js",
"watch:gtk": "npx sass -w default/gtk.scss /home/eyezah/.themes/sakura/gtk-3.0/gtk.css"
},
"author": "eyezah",
"license": "MIT",
"dependencies": {
"dotenv": "^16.3.1"
},
"devDependencies": {
"@rauschma/stringio": "^1.4.0",
"@types/node": "^20.5.9",
"chalk": "^4.1.2",
"nodemon": "^3.0.1",
"rimraf": "^5.0.1",
"sass": "^1.66.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.7",
"tsc-watch": "^6.0.4",
"typescript": "^5.2.2"
}
}