-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 999 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
{
"name": "shell-css",
"version": "1.1.0",
"description": "Retro CSS framework in the style of classic operating systems",
"scripts": {
"clean:output": "rimraf dist",
"prebuild": "npm run clean:output",
"build": "parcel build src/scss/shell.scss",
"postbuild": "node infra/prepend-license.js",
"watch:scss:local": "parcel watch --dist-dir doc/generated src/scss/shell.scss",
"watch:docs:local": "lite-server --config=infra/browser-sync-config.json",
"watch": "concurrently \"npm run watch:scss:local\" \"npm run watch:docs:local\"",
"prepublishOnly": "npm run build",
"yo": "parcel --version"
},
"keywords": [
"ui-framework",
"retro",
"operating-system-ui"
],
"files": [
"dist"
],
"author": "zshall",
"license": "MIT",
"devDependencies": {
"@parcel/transformer-sass": "^2.11.0",
"bootstrap": "^5.2.3",
"concurrently": "^8.2.2",
"lite-server": "^2.6.1",
"parcel": "^2.11.0",
"rimraf": "^5.0.5"
}
}