-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.46 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.46 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
{
"name": "@equinor/esv-intersection",
"version": "4.1.4",
"description": "Intersection component package with testing and automatic documentation.",
"type": "module",
"module": "dist/index.mjs",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"browser": "./dist/index.umd.js"
},
"files": [
"dist/*",
"src/*",
"!test/*"
],
"scripts": {
"start": "vite build --watch",
"prebuild": "rimraf dist",
"build": "vite build",
"lint:eslint": "eslint --ext .js,.jsx,.ts,.tsx src test",
"lint:tsc": "tsc -b",
"lint": "npm run lint:tsc && npm run lint:eslint",
"test": "vitest",
"test:watch": "vitest --watch",
"predocs": "rimraf docs_out",
"docs": "typedoc --out docs_out src",
"postdocs": "copyfiles images/* docs_out && copyfiles .nojekyll docs_out",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/equinor/esv-intersection.git"
},
"keywords": [
"videx",
"heappurple",
"intersection",
"typescript"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/equinor/esv-intersection/issues"
},
"homepage": "https://github.com/equinor/esv-intersection#readme",
"devDependencies": {
"@storybook/addon-docs": "^10.2.14",
"@storybook/html-vite": "^10.2.14",
"@types/d3": "^7.4.3",
"@types/mock-raf": "^1.0.6",
"copyfiles": "^2.4.1",
"eslint": "^9.39.3",
"eslint-plugin-storybook": "^10.2.14",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"lint-staged": "^15.5.2",
"mock-raf": "^1.0.1",
"pixi.js": "^8.16.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"storybook": "^10.2.14",
"typedoc": "^0.28.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.18",
"vitest-canvas-mock": "^1.1.3"
},
"peerDependencies": {
"pixi.js": "^8.16.0"
},
"dependencies": {
"@equinor/videx-math": "^1.1.6",
"@equinor/videx-vector2": "^1.0.50",
"curve-interpolator": "3.3.1",
"d3-array": "^3.2.4",
"d3-axis": "^3.0.0",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"d3-zoom": "^3.0.0"
}
}