-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
36 lines (36 loc) · 1.04 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
{
"name": "logseq-dev-theme",
"author": "pengx17",
"version": "1.26.17",
"description": "A custom theme for dev",
"logseq": {
"themes": [
{
"name": "Dev theme",
"url": "./custom.css"
},
{
"name": "Dev theme - WITHOUT bullet threading",
"url": "./no_bullet_threading.css",
"description": "Dev theme without bullet threading"
}
],
"id": "pengx17_dev_theme",
"icon": "./logo.png"
},
"scripts": {
"build:main": "yarn sass src/main.scss custom.css --no-source-map",
"build:bt": "yarn sass src/bullet_threading.scss bullet_threading.css --no-source-map",
"build:no-bt": "yarn sass src/no_bullet_threading.scss no_bullet_threading.css --no-source-map",
"build": "yarn build:main && yarn build:bt && yarn build:no-bt"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.1.3",
"sass": "^1.35.1"
},
"dependencies": {
"@semantic-release/exec": "^6.0.1"
}
}