-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.36 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
34
35
36
37
38
39
40
{
"scripts": {
"prebuild": "run-script-os",
"prebuild:win32": "rd /s /q .\\dist || mkdir .\\dist\\",
"prebuild:linux": "rm -rf ./dist/*",
"copy": "run-script-os",
"copy:win32": "Xcopy .\\static .\\dist /E /H /C /I",
"copy:linux": "cp -r static/* ./dist",
"build": "yarn prebuild && rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript && yarn copy",
"start": "ts-node --project tsconfig.node.json -r tsconfig-paths/register index.ts",
"release": "git subtree push --prefix dist https://github.com/sedlab/tilda release"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/gradient-parser": "^0.1.2",
"@types/node": "^20.3.3",
"cross-env": "latest",
"esbuild": "^0.18.11",
"rollup": "^3.26.0",
"rollup-plugin-dts": "^5.2.0",
"rollup-plugin-esbuild": "latest",
"run-script-os": "latest",
"tsconfig-paths": "latest",
"tslib": "^2.6.0",
"typescript": "^5.1.6"
},
"dependencies": {
"axios": "^1.3.5",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"css-box-shadow": "sedlab/css-box-shadow#latest",
"css-to-object": "sedlab/css-to-object#latest",
"express": "^4.18.2",
"gradient-parser": "^1.0.2",
"rgb-to-hex": "sedlab/rgb-to-hex#latest",
"ts-node": "^10.9.1"
}
}