-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.68 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
{
"name": "onyx-navigation",
"version": "1.7.0",
"description": "A library to handle d-pad navigation in KaiOS.",
"repository": {
"type": "git",
"url": "https://github.com/garredow/onyx-navigation.git"
},
"author": "Garrett Downs",
"license": "MIT",
"bugs": {
"url": "https://github.com/garredow/onyx-navigation/issues"
},
"homepage": "https://github.com/garredow/onyx-navigation#readme",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"README.md"
],
"scripts": {
"dev": "npm run clean && concurrently --kill-others \"npm run build-lib -- --watch --sourcemap\" \"npm run build-types -- --watch\"",
"build": "npm run clean && npm run build-lib -- --minify && npm run build-types",
"build-lib": "esbuild --outdir=lib --target=es6 src/*.ts src/**/*.ts",
"build-types": "tsc --emitDeclarationOnly",
"prepare": "npm run build",
"commit": "cz",
"clean": "rimraf ./lib"
},
"keywords": [],
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/object.getownpropertydescriptors": "^2.1.1",
"commitizen": "^4.2.4",
"concurrently": "^7.0.0",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.14.27",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"typescript": "^4.6.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"object.getownpropertydescriptors": "^2.1.4",
"onyx-keys": "^1.2.0"
}
}