-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.42 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.42 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": "@example/components-react",
"version": "1.0.0-alpha.0",
"author": "Community for NL Design System",
"description": "React component library for the Example repository, based on the NL Design System architecture",
"license": "EUPL-1.2",
"keywords": [
"nl-design-system"
],
"private": true,
"publishConfig": {
"access": "restricted",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git+ssh",
"url": "git@github.com:nl-design-system/example.git",
"directory": "packages/components-react"
},
"scripts": {
"build": "pnpm run --sequential '/^build:.+$/'",
"build:clean": "pnpm run clean",
"build:components": "vite build",
"clean": "rimraf dist/ pages/",
"lint": "tsc --project ./tsconfig.json --noEmit && tsc --noEmit --project ./tsconfig.test.json",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest"
},
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"dependencies": {
"clsx": "2.1.1"
},
"devDependencies": {
"@babel/core": "7.28.6",
"@babel/plugin-transform-runtime": "7.28.5",
"@babel/preset-env": "7.28.6",
"@babel/preset-react": "7.28.5",
"@babel/preset-typescript": "7.28.5",
"@babel/runtime": "7.28.6",
"@example/components-css": "workspace:*",
"@rollup/plugin-babel": "6.1.0",
"@rollup/plugin-commonjs": "28.0.9",
"@rollup/plugin-node-resolve": "16.0.3",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/react": "18.3.27",
"@vitejs/plugin-react": "4.7.0",
"@vitest/coverage-v8": "3.2.4",
"jsdom": "26.1.0",
"next": "15.5.10",
"postcss": "8.5.6",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "6.1.2",
"rollup": "4.57.0",
"rollup-plugin-filesize": "10.0.0",
"rollup-plugin-node-externals": "8.1.2",
"rollup-plugin-node-polyfills": "0.2.1",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-typescript2": "0.36.0",
"sass": "1.97.3",
"tslib": "2.8.1",
"typescript": "5.9.3",
"vite": "6.4.1",
"vite-plugin-runtime-config": "1.0.2",
"vitest": "4.0.18"
},
"peerDependencies": {
"react": "18",
"react-dom": "18"
}
}