-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.27 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
{
"name": "[[repo]]",
"sideEffects": false,
"version": "0.0.1",
"description": "",
"module": "module/index.js",
"main": "lib/index.js",
"types": "module/index.d.ts",
"source": "./src/index.ts",
"scripts": {
"start": "vite",
"test": "vitest run",
"build:wasm": "cd rust && make build",
"build": "pnpm build:wasm && vite build",
"doc": "typedoc src/index.ts",
"release": "yarn build && standard-version",
"typecheck": "tsc --noEmit"
},
"keywords": [
"js",
"promise",
"typescript"
],
"license": "ISC",
"author": "Zixuan Chen",
"repository": {
"type": "git",
"url": "git+https://github.com/[[user]]/[[repo]].git"
},
"bugs": {
"url": "https://github.com/[[user]]/[[repo]]/issues"
},
"homepage": "https://github.com/[[user]]/[[repo]]#readme",
"devDependencies": {
"@types/chance": "^1.1.1",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@vitejs/plugin-react": "^1.0.7",
"chance": "^1.1.7",
"prettier": "^2.3.2",
"standard-version": "^9.3.0",
"ts-node": "^9.1.1",
"tsup": "^5.11.1",
"typedoc": "^0.20.28",
"typescript": "^4.4.4",
"vite": "^2.7.10",
"vitest": "^0.12.6"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}