-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
62 lines (62 loc) · 1.57 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
62
{
"name": "@osrd-project/ui-core",
"version": "0.0.1-dev",
"license": "LGPL-3.0-or-later",
"bugs": "https://github.com/osrd-project/osrd-ui/issues",
"repository": {
"type": "git",
"url": "https://github.com/osrd-project/osrd-ui.git",
"directory": "ui-core"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"main": "dist/index.esm.js",
"style": "dist/theme.css",
"files": [
"/dist"
],
"exports": {
"./dist/theme.css": "./dist/theme.css",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.esm.js"
}
},
"scripts": {
"rollup": "rollup -c",
"clean": "rimraf dist",
"build": "npm run rollup",
"watch": "rollup -c -w",
"test": "vitest run",
"prepublishOnly": "npm run clean && npm run build",
"lint": "eslint src --max-warnings 0",
"lint:fix": "eslint src --fix"
},
"peerDependencies": {
"react": ">=18.0"
},
"dependencies": {
"@osrd-project/ui-icons": "0.0.1-dev",
"classnames": "^2.5.1",
"tailwindcss": "^3.4.1"
},
"devDependencies": {
"@testing-library/dom": "^10.1.0",
"@testing-library/react": "^16.0.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.17",
"jsdom": "^26.0.0",
"postcss": "^8.4.38",
"postcss-assets": "^6.0.0",
"postcss-import": "^16.0.0",
"postcss-preset-env": "^10.0.5",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "^1.1.1"
}
}