-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 957 Bytes
/
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
{
"name": "@yuuza/webfx",
"version": "1.10.4",
"description": "",
"repository": "github:lideming/webfx",
"main": "dist/webfx.js",
"module": "dist/webfx.esm.js",
"types": "build/index.d.ts",
"browser": "dist/webfx.min.js",
"scripts": {
"buildall": "pnpm run -r --parallel --filter \"./packages/*\" build && pnpm run build",
"build": "tsc && rollup -c",
"watch": "tsc && rollup -c -w",
"test": "echo \"Error: no test specified\" && exit 1",
"prepack": "pnpm run buildall",
"buildpages": "cp -R dist demo/"
},
"files": [
"dist/",
"build/**/*.d.ts",
"style.css"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"rollup": "^2.79.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.9.5"
},
"dependencies": {
"@yuuza/i18n": "workspace:*",
"@yuuza/utils": "workspace:*"
}
}