-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"name": "swiftcss",
"version": "3.32.3",
"description": "A CSS framework inspired by Tailwindcss with attribute styling to split styling and reduce dependency and size of classes in elements and components.",
"main": "./dist/main.js",
"license": "MIT",
"homepage": "https://datablock.dev",
"repository": {
"type": "git",
"url": "https://github.com/datablock-dev/SwiftCSS"
},
"scripts": {
"watch": "node ./dist/main.js watch",
"build": "node ./dist/main.js build",
"init": "node ./dist/main.js init",
"dev": "ts-node main.ts watch",
"dev-build": "ts-node main.ts build",
"dev-init": "ts-node main.ts init",
"new-dev": "ts-node main.ts dev",
"install": "sh installation.bash"
},
"keywords": [
"datablock",
"DataBlock",
"typescript",
"javascript",
"node",
"nodejs",
"js",
"ts",
"TypeScript",
"JavaScript"
],
"bin": {
"swiftcss": "./dist/main.js"
},
"dependencies": {
"autoprefixer": "^10.4.14",
"cheerio": "^1.0.0-rc.12",
"chokidar": "^3.5.3",
"cssnano": "^6.0.1",
"cssnano-preset-lite": "^3.0.0",
"glob": "^10.2.5",
"postcss": "^8.4.29",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^20.6.1",
"typescript": "^5.2.2"
}
}