-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.22 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
{
"name": "@synetics/ui",
"version": "0.7.0-alpha",
"description": "Component library for the Synetics framework",
"type": "module",
"main": "./src/index.ts",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./src/index.ts",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "echo 'Skipping TypeScript build - using source files directly with Vite runtime compilation'",
"build:types": "tsc -p tsconfig.build.json",
"predev": "pnpm --filter @synetics/transformer build && pnpm --filter @synetics/vite-plugin build && pnpm --filter @synetics/design-tokens build",
"dev": "cross-env PULSAR_DEBUG=1 NODE_OPTIONS='--max-old-space-size=8192' vite",
"dev:http": "cross-env PULSAR_TRACE=1 PULSAR_TRACE_HTTP=http://localhost:9339/trace PULSAR_TRACE_CHANNELS=lexer,parser NODE_OPTIONS='--max-old-space-size=8192' vite",
"typecheck": "tsc --noEmit",
"showcase:dev": "vite",
"showcase:build": "vite build",
"showcase:preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:reactivity": "vite --open test-comprehensive-reactivity.html",
"test:comprehensive": "vite --open test-comprehensive-reactivity.html"
},
"keywords": [
"pulsar",
"ui",
"components",
"react",
"typescript",
"tailwind"
],
"dependencies": {
"@synetics/design-tokens": "workspace:^",
"@synetics/formular.dev": "workspace:^",
"@synetics/synetics.dev": "workspace:*",
"@types/prismjs": "^1.26.5",
"prismjs": "^1.30.0"
},
"devDependencies": {
"@synetics/vite-plugin": "workspace:^",
"autoprefixer": "^10.4.17",
"cross-env": "^10.1.0",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1",
"typescript": "^5.9.3",
"vite": "^6.4.1"
},
"author": "Tadeo Piana <https://www.linkedin.com/in/tadeopiana/>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/binaryjack/synetics-ui.dev.git"
},
"homepage": "https://github.com/binaryjack/synetics-ui.dev#readme",
"bugs": {
"url": "https://github.com/binaryjack/synetics-ui.dev/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}