-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.1 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
{
"name": "libhydrogen-wasm",
"version": "0.1.0",
"description": "",
"author": {
"name": "Configured Things Ltd.",
"email": "[email protected]",
"url": "https://configuredthings.com/"
},
"license": "MIT",
"main": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ConfiguredThings/libhydrogen-wasm.git"
},
"keywords": [
"dsbd",
"sonata"
],
"bugs": {
"url": "https://github.com/ConfiguredThings/libhydrogen-wasm/issues"
},
"homepage": "https://github.com/ConfiguredThings/libhydrogen-wasm#readme",
"devDependencies": {
"@types/node": "^20.10.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2"
},
"lint-staged": {
"**/*.js": "prettier --write",
"**/*.ts": "prettier --write"
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"semi": true,
"singleQuote": true
},
"engines": {
"node": ">=20.10.0",
"npm": ">=10.2.3"
}
}