-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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-one-theme",
"author": "femto-code",
"version": "0.3.1",
"description": "A clean theme inspired by One Dark Pro.",
"logseq": {
"themes": [
{
"name": "One Theme",
"url": "./main.css",
"description": "A clean theme inspired by One Dark Pro."
},
{
"name": "One Theme (without borders)",
"url": "./main2.css",
"description": "Same as One Theme, without the borders and slightly changed color choices for a less distracting writing experience."
}
],
"id": "logseq-one-theme",
"icon": "./icon.png"
},
"scripts": {
"build:main": "npx sass src/main-bordered.scss main.css --no-source-map",
"build": "npm run build:main",
"build:v2": "npx sass src/main.scss main2.css --no-source-map"
},
"devDependencies": {
"sass": "^1.70.0",
"semantic-release": "^23.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/github": "^9.2.6"
}
}