-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·77 lines (77 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·77 lines (77 loc) · 2.45 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
{
"name": "@fest-lib/veela",
"description": "Veela CSS framework and runtime loaders (fest-lib)",
"version": "0.1.0",
"license": "MIT",
"type": "module",
"sideEffects": true,
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fest-live/veela.css.git"
},
"bugs": {
"url": "https://github.com/fest-live/veela.css/issues"
},
"homepage": "https://github.com/fest-live/veela.css#readme",
"keywords": [
"fest",
"fest-lib",
"css",
"scss",
"design-system"
],
"files": [
"dist",
"src/scss",
"LICENSE"
],
"main": "./dist/veela.js",
"module": "./dist/veela.js",
"exports": {
".": {
"import": "./dist/veela.js",
"default": "./dist/veela.js"
},
"./scss/*": "./src/scss/*",
"./package.json": "./package.json"
},
"peerDependencies": {
"@fest-lib/dom": "^0.1.0"
},
"scripts": {
"test": "node test/puppeteer/run.mjs",
"test:puppeteer": "node test/puppeteer/run.mjs",
"test:browser": "vite",
"dev": "vite --host 0.0.0.0",
"watch": "vite build --watch",
"build": "vite build --config vite.config.js && npm run docs && npm run docs:md",
"build:publish": "FEST_NPM_IMPORTS=1 vite build --config vite.config.js",
"prepack": "npm run build:publish",
"preview": "vite preview",
"docs": "typedoc ./src/index.ts --options ./typedoc.json --out ./docs --tsconfig ./tsconfig.json --excludeExternals --excludePrivate --excludeProtected --skipErrorChecking",
"docs:clean": "rm -rf ./docs && typedoc --options ./typedoc.json",
"docs:md": "typedoc --options ./typedoc.md.json",
"docs:md:clean": "rm -rf ./docs-md && typedoc --options ./typedoc.md.json"
},
"devDependencies": {
"cssnano": ">=7.1.0",
"cssnano-preset-advanced": ">=7.0.7",
"culori": ">=4.0.2",
"postcss": ">=8.5.6",
"postcss-discard-duplicates": ">=7.0.2",
"postcss-preset-env": ">=10.2.4",
"puppeteer": ">=24.42.0",
"sass": ">=1.93.3",
"typescript": ">=6.0.0-beta",
"vite": ">=8.0.7",
"vite-plugin-dynamic-import": ">=1.6.0",
"vite-plugin-external": ">=6.2.2",
"vite-plugin-optimizer": ">=1.4.3"
}
}