forked from stolinski/graffiti
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 4.21 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 4.21 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"author": "Scott Tolinski",
"bin": {
"graffiti": "bin.js",
"graffiti-lookup": "dist/graffiti-lookup.mjs"
},
"description": "A dope package to theme @drop-in",
"exports": {
".": "./dist/index.css",
"./graffiti.css": "./dist/index.css",
"./registry": "./dist/registry.json",
"./registry.json": "./dist/registry.json",
"./core": "./dist/core.css",
"./utilities": "./dist/utilities.css",
"./layouts": "./dist/layouts.css",
"./components": "./dist/components.css",
"./minimal": "./dist/minimal.css",
"./standard": "./dist/standard.css",
"./themes": "./dist/themes/index.css",
"./themes/editorial": "./dist/themes/editorial.css",
"./themes/paper": "./dist/themes/paper.css",
"./themes/system": "./dist/themes/system.css",
"./themes/neon-arcade": "./dist/themes/neon-arcade.css",
"./themes/soft-consumer": "./dist/themes/soft-consumer.css",
"./themes/studio": "./dist/themes/studio.css",
"./themes/signal": "./dist/themes/signal.css",
"./themes/lumen": "./dist/themes/lumen.css",
"./themes/editorial/raw": "./dist/themes/editorial-raw.js",
"./themes/paper/raw": "./dist/themes/paper-raw.js",
"./themes/system/raw": "./dist/themes/system-raw.js",
"./themes/neon-arcade/raw": "./dist/themes/neon-arcade-raw.js",
"./themes/soft-consumer/raw": "./dist/themes/soft-consumer-raw.js",
"./themes/studio/raw": "./dist/themes/studio-raw.js",
"./themes/signal/raw": "./dist/themes/signal-raw.js",
"./themes/lumen/raw": "./dist/themes/lumen-raw.js",
"./svelte": "./dist/svelte.js"
},
"files": [
"dist"
],
"license": "ISC",
"main": "index.css",
"name": "@drop-in/graffiti",
"scripts": {
"dev": "vite dev",
"test": "npm run lint:graffiti:check && npm run test:contracts",
"test:contracts": "vitest run --config vitest.contracts.config.ts",
"test:visual": "playwright test --config playwright.config.ts",
"test:visual:update": "playwright test --config playwright.config.ts --update-snapshots",
"test:ci": "npm run lint:graffiti:check && npm run build && npm run test:contracts && playwright test --config playwright.config.ts --project=desktop-chromium tests/visual/docs.spec.ts tests/visual/templates.spec.ts",
"test:ci:full": "npm run lint:graffiti:check && npm run build && npm run test:contracts && npm run test:visual",
"build": "node scripts/derive-mirror.mjs && vite build && node scripts/graffiti-lint.mjs && node build-modules.js",
"build:modules": "node scripts/derive-mirror.mjs && node scripts/graffiti-lint.mjs && node build-modules.js",
"check:docs-content": "node scripts/check-docs-content.mjs",
"check:agent-docs": "node scripts/check-agent-docs.mjs",
"report:agent-docs": "node scripts/report-agent-docs-coverage.mjs",
"generate:agent-docs": "node scripts/generate-agent-docs.mjs",
"lint:graffiti": "node scripts/graffiti-lint.mjs",
"lint:graffiti:check": "node scripts/graffiti-lint.mjs --check",
"lookup": "node scripts/graffiti-lookup.mjs",
"package": "node scripts/derive-mirror.mjs && svelte-kit sync && svelte-package && node scripts/graffiti-lint.mjs && node build-modules.js"
},
"type": "module",
"version": "4.32.0",
"publishConfig": {
"access": "public",
"directory": "."
},
"simple-git-hooks": {
"pre-commit": "node scripts/graffiti-lint.mjs --check"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@eslint/compat": "^1.4.0",
"@eslint/js": "^9.38.0",
"@playwright/test": "^1.58.2",
"@sveltejs/adapter-auto": "^7.0.0",
"@sveltejs/kit": "^2.47.1",
"@sveltejs/package": "^2.5.2",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@types/node": "^22",
"css-tree": "^3.2.1",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.12.4",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"simple-git-hooks": "^2.13.1",
"svelte": "^5.41.0",
"svelte-check": "^4.3.3",
"svelte-highlight": "^7.9.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1",
"vite": "^7.1.10",
"vite-plugin-devtools-json": "^1.0.0",
"vitest": "^4.1.0"
},
"dependencies": {
"@humanspeak/svelte-markdown": "^0.8.13"
}
}