-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.4 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.4 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
{
"name": "@schemavaults/theme",
"description": "TailwindCSS theme shared by different SchemaVaults applications",
"version": "0.25.9",
"private": false,
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/schemavaults/theme.git"
},
"dependencies": {
"tailwindcss-animate": "1.0.7",
"resolve": "1.22.11"
},
"devDependencies": {
"@types/resolve": "1.20.6",
"tsc-alias": "1.8.16",
"bun-types": "1.3.11",
"typescript": "5.9.3",
"tailwindcss": "3.4.17"
},
"scripts": {
"build:js": "tsc --project tsconfig.json && tsc-alias --project tsconfig.json",
"build:clean_test_map_files": "find ./dist -name \"*.test.js.map\" -type f -delete",
"build:clean_test_js_files": "find ./dist -name \"*.test.js\" -type f -delete",
"build:clean_test_declarations_files": "find ./dist -name \"*.test.d.ts\" -type f -delete",
"build:cleanup": "bun run build:clean_test_map_files && bun run build:clean_test_js_files && bun run build:clean_test_declarations_files",
"prebuild": "bun run clean",
"build": "bun run build:js",
"postbuild": "bun run build:cleanup",
"clean": "rm -rf ./dist",
"test:unit": "NODE_ENV=test bun test",
"test": "bun run test:unit"
},
"exports": {
"./globals.css": {
"import": "./globals.css",
"require": "./globals.css",
"node": "./globals.css",
"default": "./globals.css"
},
"./dist/globals.css": {
"import": "./globals.css",
"require": "./globals.css",
"node": "./globals.css",
"default": "./globals.css"
},
"./ScreenBreakpoints": {
"types": "./dist/ScreenBreakpoints.d.ts",
"require": "./dist/ScreenBreakpoints.js",
"node": "./dist/ScreenBreakpoints.js",
"import": "./dist/ScreenBreakpoints.js"
},
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"node": "./dist/index.js",
"import": "./dist/index.js"
},
"./*": {
"types": "./dist/*",
"require": "./dist/*",
"import": "./dist/*",
"default": "./dist/*"
},
"./dist/*": {
"types": "./dist/*",
"require": "./dist/*",
"import": "./dist/*",
"default": "./dist/*"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"publishConfig": {
"access": "public"
},
"packageManager": "bun@1.3.11"
}