-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
57 lines (57 loc) · 1.33 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "luxacss",
"version": "2.0.2",
"description": "The minimalist CSS library",
"author": "luxonauta",
"license": "MIT",
"keywords": [
"css",
"library",
"minimal",
"scss"
],
"homepage": "https://luxacss.com",
"repository": {
"type": "git",
"url": "git+https://github.com/luxonauta/luxacss.git"
},
"bugs": {
"url": "https://github.com/luxonauta/luxacss/issues"
},
"type": "module",
"main": "./dist/luxa.js",
"module": "./dist/luxa.js",
"exports": {
".": {
"import": "./dist/luxa.js",
"require": "./dist/luxa.js"
},
"./css": "./dist/expanded/luxa.css",
"./scss": "./sass/luxa.scss"
},
"style": "./dist/expanded/luxa.css",
"sass": "./sass/luxa.scss",
"files": [
"dist",
"sass"
],
"scripts": {
"build": "node build.js",
"watch": "node build.js --watch",
"build:docs": "cd docs && npm run build",
"dev:docs": "cd docs && npm run dev",
"format": "prettier --write .",
"install:all": "npm install && cd docs && dotenv -e .env npm install",
"lint:docs": "cd docs && npx next lint --fix",
"start:docs": "cd docs && npm start"
},
"devDependencies": {
"dotenv-cli": "^7.4.2",
"prettier-plugin-css-order": "^2.1.2",
"prettier": "3.0.3",
"sass": "^1.69.7"
},
"peerDependencies": {
"sass": "^1.69.7"
}
}