-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·102 lines (102 loc) · 3.72 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·102 lines (102 loc) · 3.72 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
{
"name": "@fest-lib/veela",
"description": "fest-lib Veela: CSS tokens, --c2 color functions, Agate.UX, SCSS + runtime loaders",
"version": "1.0.31",
"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/index.scss",
"./scss/index.scss": "./src/scss/index.scss",
"./scss/*": "./src/scss/*",
"./scss/core": "./src/scss/core/index.scss",
"./scss/basic": "./src/scss/basic/index.scss",
"./scss/interact": "./src/scss/interact/index.scss",
"./scss/ui": "./src/scss/ui/index.scss",
"./scss/theme": "./src/scss/theme/index.scss",
"./scss/native-controls": "./src/scss/ui/native-controls.scss",
"./package.json": "./package.json",
"./dist/index.js": "./dist/veela.js",
"./index.js": "./dist/veela.js"
},
"dependencies": {
"@fest-lib/object": "github:fest-live/object.ts#main",
"@fest-lib/core": "github:fest-live/core.ts#main",
"@fest-lib/dom": "github:fest-live/dom.ts#main",
"@fest-lib/lure": "github:fest-live/lur.e#main"
},
"peerDependencies": {
"@fest-lib/object": ">=0.1.0",
"@fest-lib/core": ">=0.1.0",
"@fest-lib/dom": ">=0.1.0",
"@fest-lib/lure": ">=0.1.0"
},
"scripts": {
"test": "npm run test:puppeteer",
"test:scss-contracts": "node test/scss-contracts.mjs",
"test:puppeteer": "node test/puppeteer/run.mjs",
"test:browser": "npm run demo",
"dev": "vite --host 0.0.0.0",
"demo": "vite",
"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",
"docs": "typedoc ./src/scss/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",
"preview": "vite preview",
"release": "PUPPETEER_SKIP_DOWNLOAD=1 npm run build:publish && npm publish --access public --ignore-scripts",
"publish": "node ../scripts/bump-patch-version.mjs && npm run release"
},
"devDependencies": {
"cssnano": ">=9.0.3",
"cssnano-preset-advanced": ">=9.0.3",
"culori": ">=4.0.2",
"postcss": ">=8.5.28",
"postcss-discard-duplicates": ">=9.0.2",
"postcss-preset-env": ">=11.5.1",
"puppeteer": ">=25.10.0",
"sass": ">=1.104.0",
"typedoc": "^0.28.20",
"typedoc-plugin-markdown": "^4.13.0",
"typescript": "^6.0.3",
"vite": ">=8.2.2",
"vite-plugin-dynamic-import": ">=1.6.0",
"vite-plugin-external": ">=8.0.3",
"vite-plugin-optimizer": ">=1.4.3"
}
}