-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.46 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.46 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
103
104
105
{
"name": "@salty-css/source",
"version": "0.0.0",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"description": "Vite plugin for Salty CSS",
"homepage": "https://salty-css.dev/",
"repository": {
"type": "git",
"url": "git+https://github.com/margarita-form/salty-css.git"
},
"bugs": {
"url": "https://github.com/margarita-form/salty-css/issues"
},
"type": "module",
"scripts": {
"pretty": "prettier --write .",
"lerna": "lerna",
"version": "npm run build:all",
"dev:astro-demo": "nx run astro-demo:dev",
"dev:react-vite-demo": "nx run react-vite-demo:dev",
"test:all": "nx run-many --target=test --projects astro core next react vite webpack",
"test:astro": "nx run astro:test",
"test:core": "nx run core:test",
"test:next": "nx run next:test",
"test:react": "nx run react:test",
"test:vite": "nx run vite:test",
"test:webpack": "nx run webpack:test",
"test:exports": "node ./scripts/verify-exports.mjs",
"ensure:astro-demo-build": "nx run astro-demo:build",
"ensure:react-vite-demo-build": "nx run react-vite-demo:build",
"ensure:demos-build": "nx run-many --target=build --projects astro-demo react-vite-demo",
"build:all": "nx run-many --target=build --projects astro core next react vite webpack eslint-config-core eslint-plugin-core",
"build:astro": "nx run astro:build",
"build:core": "nx run core:build",
"build:next": "nx run next:build",
"build:react": "nx run react:build",
"build:vite": "nx run vite:build",
"build:webpack": "nx run webpack:build",
"build:eslint-config-core": "nx run eslint-config-core:build",
"build:eslint-plugin-core": "nx run eslint-plugin-core:build",
"publish:cli": "cd libs/cli && npm publish",
"publish:npm-create": "cd libs/npm-create && npm publish",
"publish:core": "cd libs/core && npm publish",
"publish:react": "cd libs/react && npm publish",
"publish:astro": "cd libs/astro && npm publish",
"publish:vite": "cd libs/vite && npm publish",
"publish:next": "cd libs/next && npm publish",
"publish:webpack": "cd libs/webpack && npm publish",
"publish:eslint-config-core": "cd libs/eslint-config-core && npm publish",
"publish:eslint-plugin-core": "cd libs/eslint-plugin-core && npm publish",
"publish:all-branch": "node ./scripts/publish-package.mjs branch",
"publish:all-dev": "node ./scripts/publish-package.mjs dev",
"publish:all": "node ./scripts/publish-package.mjs release"
},
"dependencies": {
"astro": "^6.4.6",
"clsx": "^2.1.1",
"color": "^5.0.3",
"vite-node": "^5.3.0",
"webpack": "^5.107.2"
},
"devDependencies": {
"@nx/js": "22.7.5",
"@swc-node/register": "1.11.1",
"@swc/core": "1.15.8",
"@swc/helpers": "0.5.18",
"@testing-library/react": "^16.3.2",
"@types/ejs": "^3.1.5",
"@types/node": "^25.9.2",
"@types/react": "^19.2.17",
"lerna": "^9.0.7",
"nx": "22.7.5",
"prettier": "^3.8.4",
"tslib": "^2.3.0",
"typescript": "~6.0.2",
"unplugin-dts": "^1.0.2",
"vite": "^8.0.12",
"vitest": "^4.1.8"
},
"workspaces": [
"apps/*",
"libs/*"
],
"engines": {
"node": ">=24"
},
"packageManager": "npm@11.12.1",
"author": {
"name": "Teemu Lahjalahti",
"url": "https://www.linkedin.com/in/teemulahjalahti/"
},
"keywords": [
"salty-css",
"css-in-js",
"css",
"styling",
"build-time",
"compiler",
"design-tokens"
]
}