-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.77 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
{
"name": "@subwaytime/tscss",
"version": "0.0.3",
"private": false,
"type": "module",
"homepage": "https://github.com/subwaytime/tscss#readme",
"bugs": "https://github.com/subwaytime/tscss/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/subwaytime/tscss.git"
},
"description": "TypeScript-powered CSS macro system — include TS Functions in your CSS",
"keywords": [
"tscss",
"css",
"macro",
"lightningcss",
"vite",
"typescript",
"design-tokens",
"design-system",
"design",
"syntax"
],
"license": "MIT",
"author": "Subwaytime <leon.l@nophase.de>",
"exports": {
".": {
"import": "./dist/core.js",
"types": "./dist/core.d.ts"
},
"./vite": {
"import": "./dist/vite.js",
"types": "./dist/vite.d.ts"
},
"./core": {
"import": "./dist/core.js",
"types": "./dist/core.d.d.ts"
},
"./directives": {
"import": "./dist/directives.js",
"types": "./dist/directives.d.ts"
},
"./helpers": {
"import": "./dist/helpers.js",
"types": "./dist/helpers.d.ts"
}
},
"files": ["dist"],
"scripts": {
"test": "vitest",
"bundle": "bunx --bun tsdown",
"prepublishOnly": "bun run bundle",
"release": "bunx git-ensure -a && bunx bumpp --commit --tag --push && bun publish --access public"
},
"workspaces": {
"packages": ["packages/*"],
"catalog": {
"lightningcss": "1.32.0",
"vite": "^8.0.16"
}
},
"devDependencies": {
"@types/bun": "1.3.14",
"lightningcss": "catalog:",
"tsdown": "0.22.3",
"typescript": "6.0.3",
"vite": "catalog:",
"vitest": "4.1.9",
"valibot": "1.4.1"
},
"packageManager": "bun@1.3.14",
"dependencies": {
"nostics": "1.1.4"
}
}