-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.58 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.58 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "sleek",
"version": "2.15.2",
"description": "Toph's base stylesheets",
"workspaces": [
"site"
],
"scripts": {
"build": "npm-run-all build:css build:js",
"build:css": "sass --style expanded --source-map --embed-sources --no-error-css --pkg-importer node scss/:dist/css/",
"build:js": "rollup -c rollup.config.js",
"lint": "npm-run-all lint:js lint:css",
"lint:js": "eslint js/",
"lint:css": "stylelint \"scss/**/*.scss\"",
"site:dev": "npm run dev -w site",
"site:build": "npm run build -w site",
"site:preview": "npm run preview -w site"
},
"main": "dist/js/sleek.js",
"module": "dist/js/sleek.esm.js",
"sass": "scss/sleek.scss",
"style": "dist/css/sleek.css",
"exports": {
".": {
"sass": "./scss/sleek.scss",
"default": "./js/index.js"
},
"./*": {
"sass": "./scss/*.scss"
},
"./widgets/*": {
"sass": "./scss/widgets/*/index.scss",
"default": "./js/widgets/*/index.js"
},
"./widgets/*/dark": {
"sass": "./scss/widgets/*/dark.scss"
}
},
"dependencies": {
"@toph/kernel.js": "^1.3.1",
"animate.css": "^4.1.0",
"sass": "^1.97.2"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@eslint/js": "^10.0.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"autoprefixer": "^10.4.23",
"eslint": "^10.0.2",
"globals": "^17.4.0",
"npm-run-all2": "^8.0.4",
"rollup": "^2.44.0",
"stylelint": "^17.4.0",
"stylelint-config-standard-scss": "^17.0.0"
}
}