-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.41 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
{
"name": "userust",
"version": "0.0.38",
"description": "Custom Rust WebAssembly hooks for React and SolidJS projects",
"type": "module",
"bin": "dist/index.js",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git+https://github.com/ollipal/useRust.git"
},
"keywords": [
"Rust",
"WASM",
"React",
"SolidJS",
"hook",
"bindgen"
],
"author": "Olli Paloviita",
"license": "MIT",
"bugs": {
"url": "https://github.com/ollipal/useRust/issues"
},
"homepage": "https://github.com/ollipal/useRust#readme",
"dependencies": {
"chalk": "^5.2.0",
"command-exists": "^1.2.9",
"commander": "^10.0.0",
"fs-extra": "^11.1.0",
"g": "^2.0.1",
"inquirer": "^9.1.4"
},
"devDependencies": {
"@types/command-exists": "^1.2.0",
"@types/fs-extra": "^11.0.1",
"@types/inquirer": "^9.0.3",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-plugin-react": "^7.32.1",
"nodemon": "^2.0.20",
"typescript": "^4.9.4"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node ./dist/index.js",
"pub": "npm run build && npm version patch --no-git-tag-version && npm publish",
"dev": "nodemon --exec 'npm run build' --ignore ./dist/ --ignore ./testing/"
},
"files": [
"dist/*",
"templates/*"
]
}