-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 1.02 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
{
"name": "extensions",
"version": "1.0.0",
"repositoryName": "Default extensions",
"description": "Default extensions for Paperback 0.8.",
"main": "lib/index.js",
"scripts": {
"migrate": "npx paperback migrate",
"bundle": "npx paperback bundle",
"serve": "npx paperback serve",
"dev": "npx nodemon --watch \"**/*.ts\" --ext \"js ts\" --exec \"npm run serve\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Paperback-iOS/extensions"
},
"author": "Paperback",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Paperback-iOS/extensions/issues"
},
"homepage": "https://github.com/Paperback-iOS/extensions#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-plugin-modules-newline": "^0.0.6",
"typescript": "^4.3.2"
},
"dependencies": {
"@paperback/toolchain": "^0.8.0-alpha.38",
"@paperback/types": "^0.8.0-alpha.38"
}
}