-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
97 lines (97 loc) · 2.76 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
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
93
94
95
96
97
{
"name": "@equinor/esv-intersection",
"version": "3.1.1",
"description": "Intersection component package with testing and automatic documentation.",
"type": "module",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"browser": "./dist/index.umd.js"
},
"files": [
"dist/*",
"src/*",
"!test/*"
],
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "vite build",
"lint:eslint": "eslint --ext .js,.jsx,.ts,.tsx src test",
"lint:tsc": "tsc -b",
"lint": "run-p lint:tsc 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 install",
"version": "changeset version && npm install --package-lock-only",
"release:npm": "npm run build && changeset publish",
"release:github": "npm run build && changeset publish --no-git-tag"
},
"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": {
"@changesets/cli": "^2.26.2",
"@storybook/addon-storysource": "^8.3.5",
"@storybook/html-vite": "^8.3.5",
"@types/d3": "^7.4.2",
"@types/mock-raf": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"copyfiles": "^2.4.1",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-storybook": "^0.9.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.1",
"mock-raf": "^1.0.1",
"npm-run-all": "^4.1.5",
"pixi.js": "^7.3.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"storybook": "^8.3.5",
"storybook-dark-mode": "^4.0.2",
"tslib": "^2.6.2",
"typedoc": "^0.25.2",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-dts": "^3.6.0",
"vitest": "^0.34.6",
"vitest-canvas-mock": "^0.3.3"
},
"peerDependencies": {
"pixi.js": "^7.1.0"
},
"dependencies": {
"@equinor/videx-math": "^1.1.0",
"@equinor/videx-vector2": "^1.0.44",
"curve-interpolator": "3.1.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"
}
}