generated from zxch3n/ts-rust-template
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
78 lines (78 loc) · 2.08 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@zxch3n/tidy",
"sideEffects": false,
"version": "0.0.2",
"description": "",
"main": "./dist/tidy.umd.js",
"module": "./dist/tidy.es.mjs",
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"exports": {
".": {
"import": "./dist/tidy.es.mjs",
"require": "./dist/tidy.umd.js"
}
},
"scripts": {
"start": "vite",
"test": "vitest run",
"build:wasm": "cd rust && make build",
"build": "npm run build:wasm && vite build && tsc --project ./tsconfig.type.json",
"doc": "typedoc src/index.ts",
"release": "npm run build && commit-and-tag-version",
"typecheck": "tsc --noEmit",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"bench:wasm": "node --expose-gc test/benchmark.mjs"
},
"keywords": [
"tree",
"visualization",
"wasm",
"mindmap",
"rust"
],
"license": "MIT",
"author": "Zixuan Chen",
"repository": {
"type": "git",
"url": "git+https://github.com/zxch3n/tidy.git"
},
"bugs": {
"url": "https://github.com/zxch3n/tidy/issues"
},
"homepage": "https://github.com/zxch3n/tidy#readme",
"devDependencies": {
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/builder-vite": "^0.2.5",
"@storybook/react": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@types/chance": "^1.1.3",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react": "^2.2.0",
"chance": "^1.1.9",
"commit-and-tag-version": "^10.1.0",
"consola": "^2.15.3",
"less": "^4.1.3",
"prettier": "^2.8.0",
"ts-node": "^10.9.1",
"tsup": "^5.11.1",
"typedoc": "^0.23.21",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vite-plugin-style-import": "^2.0.0",
"vitest": "^0.25.3"
},
"dependencies": {
"antd": "^4.24.3",
"immer": "^9.0.16",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-use": "^17.4.0",
"zrender": "^5.4.0"
}
}