-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.32 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
{
"name": "@bgotink/kdl",
"version": "0.3.1",
"author": {
"name": "Bram Gotink",
"url": "https://github.com/bgotink"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bgotink/kdl"
},
"homepage": "http://github.bram.dev/kdl/",
"description": "Modification-friendly KDL parser and serializer.",
"keywords": [
"kdl",
"parser",
"serializer"
],
"type": "module",
"private": true,
"sideEffects": false,
"packageManager": "[email protected]",
"exports": {
".": "./src/index.js",
"./json": "./src/json.js",
"./v1-compat": "./src/v1-compat.js",
"./dessert": "./src/dessert.js",
"./package.json": "./package.json"
},
"scripts": {
"postinstall": "is-ci || husky",
"build": "node scripts/build.js",
"test": "uvu test",
"bench": "node scripts/bench.js",
"book": "scripts/book.sh"
},
"devDependencies": {
"@bgotink/kdl-v1": "npm:@bgotink/[email protected]",
"@types/benchmark": "^2.1.5",
"@types/node": "^22",
"benchmark": "^2.1.4",
"esbuild": "^0.24.2",
"express-check-in": "^0.2.0",
"husky": "npm:@dot-config/[email protected]",
"is-ci": "^3.0.1",
"kdljs": "^0.2.0",
"marked": "^14.1.2",
"prettier": "npm:@dot-config/[email protected]",
"typedoc": "^0.27.6",
"typedoc-plugin-markdown": "^4.3.3",
"typescript": "~5.6.2",
"uvu": "^0.5.6"
}
}