-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 811 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 811 Bytes
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
{
"name": "inkdrop-consts",
"version": "3.1.0",
"description": "Public constants for Inkdrop",
"types": "lib/index.d.ts",
"main": "lib/index.umd.js",
"unpkg": "lib/index.umd.js",
"module": "lib/index.esm.js",
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"lint": "eslint src",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [],
"author": "Takuya Matsuyama <t@inkdrop.app>",
"license": "UNLICENSED",
"devDependencies": {
"@eslint/js": "^10.0.0",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"typescript-eslint": "^8.26.0",
"prettier": "^3.8.1",
"rollup": "^4.57.1",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.9.3"
},
"files": [
"lib"
]
}