forked from skwee357/switchdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.35 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": "switchdb",
"version": "0.0.5",
"description": "An, collaborative database of mechanical key switches",
"keywords": [
"keyboard switch",
"mechanical key switch",
"mechanical switch database",
"cherry",
"kailh",
"gateron"
],
"files": [
"lib"
],
"homepage": "https://anyswitch.xyz",
"bugs": {
"url": "https://github.com/skwee356/switchdb/issues"
},
"license": "GPL-3.0",
"author": {
"name": "Dmitry (skwee357) Kudryavtsev",
"url": "https://kudmitry.com"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint src",
"prettier": "prettier src --check",
"release": "rm -rf lib && npm run lint && npm run build && dotenv release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/skwee357/switchdb"
},
"devDependencies": {
"@release-it/keep-a-changelog": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"dotenv-cli": "^7.1.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.7.0",
"prettier": "^2.8.4",
"release-it": "^15.8.0",
"ts-node": "^10.9.1",
"typescript": "*"
}
}