-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 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
63
64
65
66
{
"name": "node-editor",
"version": "0.2.3",
"description": "Generic node editor web components",
"homepage": "https://github.com/qix-/node-editor",
"repository": "github:qix-/node-editor",
"type": "module",
"types": "dist/index.d.ts",
"bugs": {
"url": "https://github.com/qix-/node-editor/issues"
},
"scripts": {
"format": "prettier --write --ignore-path .gitignore .",
"lint": "prettier --check --ignore-path .gitignore .",
"format:staged": "pretty-quick --staged",
"lint:commit": "commitlint -x @commitlint/config-conventional --edit",
"build": "tsc",
"prepublish": "rm -rf dist && npm run build"
},
"files": [
"dist",
"screenshot.png",
"README.md",
"LICENSE"
],
"browser": "./dist/index.js",
"exports": "./dist/index.js",
"keywords": [
"node",
"editor",
"html",
"browser",
"workflow",
"routing",
"router"
],
"author": "Josh Junon <josh@junon.me>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "16.1.0",
"@commitlint/config-conventional": "16.0.0",
"@vercel/git-hooks": "1.0.0",
"prettier": "2.5.1",
"pretty-quick": "3.1.3",
"typescript": "4.5.5"
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"git": {
"pre-commit": "format:staged",
"commit-msg": "lint:commit"
},
"prettier": {
"useTabs": true,
"semi": true,
"singleQuote": true,
"jsxSingleQuote": false,
"trailingComma": "none",
"arrowParens": "avoid",
"requirePragma": false,
"insertPragma": false,
"endOfLine": "lf"
}
}