-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.19 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.19 KB
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
{
"name": "anntopia",
"description": "A typescript computing geometry and visual computing toolkit",
"author": "yrq110 <yrq1025@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "pnpm dev --filter playground",
"site": "pnpm dev --filter site",
"build:pkg": "pnpm build --filter geometry --filter graphic --filter image",
"build:site": "pnpm build --filter site",
"test": "pnpm test --filter geometry --filter graphic --filter image",
"lint": "pnpm exec eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "pnpm exec eslint . --ext .js,.jsx,.ts,.tsx --fix",
"pub:doc": "pnpm build:site && gh-pages -d packages/site/docs/.vuepress/dist"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"esbuild": "^0.11.9",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"gh-pages": "^3.1.0",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"rollup": "^2.45.2",
"rollup-plugin-esbuild": "^3.0.2",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
}
}