-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1009 Bytes
/
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
{
"name": "@inkdropapp/base-ui-theme",
"version": "0.3.8",
"author": "Takuya Matsuyama<[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/inkdropapp/base-ui-theme.git"
},
"devDependencies": {
"@inkdropapp/css": "^0.4.2",
"@types/node": "^22.7.5",
"del": "^7.1.0",
"less": "^4.2.0",
"mkdirp": "^3.0.1",
"postcss": "^8.4.47"
},
"browserslist": [
"Electron 31.0.4"
],
"description": "Base UI Theme for Inkdrop",
"files": [
"styles/theme.css",
"lib/variable-names.json"
],
"keywords": [
"inkdrop",
"markdown"
],
"license": "MIT",
"scripts": {
"clean": "rm -rf ./styles",
"watch": "./scripts/watch.sh",
"unwatch": "./scripts/unwatch.sh",
"build": "mkdir -p ./styles && lessc src/semantic.less > styles/theme.css",
"generate-variable-names": "mkdir -p ./lib && bun ./scripts/generate-variable-names.ts",
"prepublishOnly": "bun run build && bun run generate-variable-names"
}
}