This repository has been archived by the owner on Mar 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 1.98 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "create-notion-app",
"version": "0.0.0-SNAPSHOT",
"description": "Create nbundle-powered Notion apps with one command",
"keywords": [
"notion",
"notion-api",
"notion-client",
"notion-app",
"notion-integration",
"notion-extension",
"notion-plugin",
"notion-addon",
"notion-automation",
"nbundle",
"nbundle-app",
"nbundle-integration",
"nbundle-extension",
"nbundle-plugin",
"nbundle-addon"
],
"license": "UNLICENSED",
"repository": "https://github.com/nbundle/create-notion-app",
"publishConfig": {
"access": "public"
},
"files": [
"out",
"bin"
],
"main": "out/main.js",
"bin": {
"create-notion-app": "bin/create-notion-app.js"
},
"engines": {
"node": ">=14.0.0",
"yarn": "^1.22.0"
},
"scripts": {
"prepare": "husky install",
"start": "webpack --mode development --watch --color",
"build": "webpack --mode production --color"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-angular": "^17.0.0",
"@commitlint/prompt-cli": "^17.0.0",
"@tsconfig/node14": "^1.0.1",
"@types/async-retry": "^1.4.4",
"@types/got": "^9.6.12",
"@types/ms": "^0.7.31",
"@types/nanoid-dictionary": "^4.2.0",
"@types/node": "^14.18.12",
"@types/prompts": "^2.0.14",
"@types/tar": "^6.1.1",
"async-retry": "^1.3.3",
"capital-case": "^1.0.4",
"cspell": "^6.1.2",
"email-validator": "^2.0.4",
"got": "^12.1.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"ms": "^2.1.3",
"nanoid": "^4.0.0",
"nanoid-dictionary": "^4.3.0",
"node-fetch": "^3.2.6",
"open": "^8.4.0",
"param-case": "^3.0.4",
"prettier": "^2.6.2",
"prompts": "^2.4.2",
"semantic-release": "^19.0.3",
"tar": "^6.1.11",
"ts-loader": "^9.3.0",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.7.3",
"update-check": "^1.5.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2"
}
}