-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 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": "@osrd-project/ui-manchette-with-spacetimechart",
"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-manchette-with-spacetimechart"
},
"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",
"prepublishOnly": "npm run clean && npm run build",
"lint": "eslint src --max-warnings 0",
"lint:fix": "eslint src --fix",
"test": "vitest run --dir src/__tests__"
},
"dependencies": {
"@osrd-project/ui-manchette": "0.0.1-dev",
"@osrd-project/ui-spacetimechart": "0.0.1-dev",
"@osrd-project/ui-speedspacechart": "0.0.1-dev",
"classnames": "^2.5.1",
"lodash.isequal": "^4.5.0",
"vitest": "^2.1.1"
},
"peerDependencies": {
"react": ">=18.0"
},
"devDependencies": {
"autoprefixer": "^10.4.17",
"postcss": "^8.4.37",
"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",
"tailwindcss": "^3.4.1"
}
}