-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.11 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.11 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
106
107
108
109
110
111
112
{
"name": "@ossrandom/design-system",
"version": "0.3.0",
"description": "RandomCodeSpace Design System — strongly-typed React component definitions.",
"keywords": [
"design-system",
"react",
"typescript",
"components",
"ui-kit"
],
"license": "MIT",
"author": "RandomCodeSpace",
"homepage": "https://github.com/RandomCodeSpace/design-system#readme",
"bugs": {
"url": "https://github.com/RandomCodeSpace/design-system/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RandomCodeSpace/design-system.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./tokens": {
"types": "./dist/tokens.d.ts",
"import": "./dist/tokens.js"
},
"./charts": {
"types": "./dist/charts/index.d.ts",
"import": "./dist/charts/index.js"
},
"./styles.css": "./dist/styles.css"
},
"files": [
"dist",
"src",
"README.md"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc -p tsconfig.build.json && node scripts/build-assets.mjs",
"build:site": "node scripts/build-site.mjs _site",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:install": "playwright install --with-deps chromium",
"preview": "echo 'Open preview/responsive-check.html in a browser' ",
"prepublishOnly": "pnpm run typecheck && pnpm run build",
"release": "pnpm version"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"uplot": "^1.6.0",
"d3-hierarchy": "^3.0.0",
"d3-force": "^3.0.0",
"cytoscape": "^3.30.0",
"cytoscape-cose-bilkent": "^4.1.0",
"@deck.gl/core": "^9.0.0",
"@deck.gl/layers": "^9.0.0"
},
"peerDependenciesMeta": {
"uplot": { "optional": true },
"d3-hierarchy": { "optional": true },
"d3-force": { "optional": true },
"cytoscape": { "optional": true },
"cytoscape-cose-bilkent": { "optional": true },
"@deck.gl/core": { "optional": true },
"@deck.gl/layers": { "optional": true }
},
"devDependencies": {
"@babel/standalone": "^7.29.0",
"@playwright/test": "^1.59.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^4.1.5",
"esbuild": "^0.28.0",
"eslint": "^9.0.0",
"jsdom": "^29.0.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.6.0",
"vite": "^8.0.10",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=18.18"
},
"packageManager": "pnpm@9.12.0"
}