-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
61 lines (61 loc) · 1.74 KB
/
package.json
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
{
"name": "@digdir/designsystemet-react",
"version": "1.0.0-next.33",
"description": "React components for Designsystemet",
"author": "Designsystemet team",
"repository": {
"type": "git",
"url": "git+https://github.com/digdir/designsystemet.git"
},
"homepage": "https://github.com/digdir/designsystemet/tree/main/packages/react",
"license": "MIT",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"sideEffects": false,
"files": [
"dist/**"
],
"scripts": {
"build": "yarn run clean && tsc -p tsconfig.build.json && rollup -c --bundleConfigAsCjs",
"clean": "rimraf dist && rimraf tsc-build",
"copy-css-to-build": "copyfiles -u 1 ./src/**/*.css ./tsc-build/",
"types": "tsc --noEmit"
},
"peerDependencies": {
"react": ">=18.3.1",
"react-dom": ">=18.3.1"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@floating-ui/dom": "^1.6.10",
"@floating-ui/react": "0.26.23",
"@navikt/aksel-icons": "^6.14.0",
"@radix-ui/react-slot": "^1.1.0",
"@tanstack/react-virtual": "^3.10.7",
"@u-elements/u-details": "^0.0.5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"copyfiles": "^2.4.1",
"jsdom": "^24.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"rollup": "^4.20.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"typescript": "^5.5.4"
}
}