-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.47 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
{
"name": "@zwave-js/fmt",
"version": "1.0.3",
"description": "Dprint wrapper to programmatically format source files in memory",
"publishConfig": {
"access": "public"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"keywords": [],
"files": [
"build/",
"plugins/"
],
"author": {
"name": "AlCalzone",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/zwave-js/fmt#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zwave-js/fmt.git"
},
"bugs": {
"url": "https://github.com/zwave-js/fmt/issues"
},
"funding": {
"url": "https://github.com/sponsors/AlCalzone/"
},
"engines": {
"node": ">=14.13.0 <15 || >= 16 <16.9.0 || >16.9.0"
},
"scripts": {
"clean": "del-cli build/",
"build": "yarn clean && tsc",
"prepack": "yarn build",
"test": "node test/test.js",
"prepublish": "yarn test"
},
"dependencies": {
"json5": "^2.2.3"
},
"devDependencies": {
"@dprint/formatter": "^0.4.1",
"@dprint/json": "^0.19.4",
"@dprint/markdown": "^0.17.8",
"@dprint/typescript": "^0.93.3",
"@tsconfig/node16": "^16.1.3",
"@types/node": "^16.18.101",
"del-cli": "^5.1.0",
"dprint": "^0.48.0",
"typescript": "^5.7.3"
},
"peerDependencies": {
"@dprint/formatter": "^0.4.1",
"@dprint/json": "^0.19.3",
"@dprint/markdown": "^0.17.8",
"@dprint/typescript": "^0.93.0"
},
"packageManager": "[email protected]"
}