-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.42 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
{
"name": "intent-css",
"version": "0.2.0",
"description": "Intent — an intent-based styling system. Semantic roles instead of utility values, relationship-based spacing, OKLCH theming, container-query responsiveness, and a design linter built for humans and AI coding agents.",
"keywords": [
"css",
"design-system",
"design-tokens",
"styling",
"oklch",
"container-queries",
"design-linter",
"ai-friendly",
"llm",
"agents",
"semantic-css"
],
"homepage": "https://dataswarmproject.github.io/intent-css/",
"bugs": "https://github.com/dataswarmproject/intent-css/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/dataswarmproject/intent-css.git"
},
"license": "SEE LICENSE IN LICENSE.md",
"author": "DataSwarm Project",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"bin": {
"intent": "./bin/intent.js",
"intent-css": "./bin/intent.js"
},
"files": [
"bin",
"dist",
"LICENSE.md",
"README.md",
"AGENTS.md",
"llms.txt"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "npm run build && node --test",
"demo": "node bin/intent.js build",
"check": "node bin/intent.js check",
"prepublishOnly": "npm test"
},
"devDependencies": {
"@types/node": "^24.13.3",
"typescript": "^5.9.3"
}
}