-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.18 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
{
"name": "@kvs/types",
"version": "2.1.4",
"description": "A type definition for KVS.",
"keywords": [
"types",
"kvs"
],
"homepage": "https://github.com/azu/kvs/tree/master/packages/types/",
"bugs": {
"url": "https://github.com/azu/kvs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/azu/kvs.git"
},
"license": "MIT",
"author": "azu",
"sideEffects": false,
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"bin/",
"lib/"
],
"scripts": {
"build": "tsc -p .",
"clean": "rimraf lib/ module/",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepublishOnly": "npm run clean && npm run build",
"test": "tsc -p test",
"watch": "tsc -p . --watch"
},
"tsd": {
"directory": "test"
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "none"
},
"devDependencies": {
"@types/node": "^20.4.2",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"tsd": "^0.28.1",
"typescript": "^5.1.6"
},
"publishConfig": {
"access": "public"
}
}