-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.35 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
{
"name": "clipper-css",
"version": "0.5.2",
"description": "Clipper is a simple Tailwind framework for building pages without fighting CSS and drowning in utility classes.",
"scripts": {
"clean": "node scripts/utils.js clean",
"build": "node scripts/utils.js update-version",
"test": "node --test tests/remark-clipper.test.js",
"test:astro": "cd tests/astro && node ../../bin/cli.js",
"test:sveltekit": "cd tests/sveltekit && node ../../bin/cli.js",
"version": "npm run build && git add clipper/clipper.css",
"prepublishOnly": "npm run build && npm run test"
},
"type": "module",
"main": "bin/cli.js",
"bin": {
"clipper": "./bin/cli.js"
},
"keywords": [
"css",
"tailwind",
"framework",
"design-system",
"sveltekit",
"astro"
],
"author": "Andreas Söderlund <ciscoheat@gmail.com> (https://blog.encodeart.dev)",
"license": "MIT",
"bugs": "https://github.com/ciscoheat/clipper-css/issues",
"repository": {
"url": "https://github.com/ciscoheat/clipper-css"
},
"files": [
"bin",
"clipper",
"extras",
"templates",
"README.md",
"LICENSE"
],
"dependencies": {
"globby": "^16.1.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"unified": "^11.0.5"
}
}