-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.56 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
{
"name": "pidraw",
"version": "0.1.44",
"description": "A drawing library for teacher :)",
"type": "module",
"main": "dist/pidraw.js",
"module": "dist/pidraw.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/pidraw.js",
"require": "./dist/pidraw.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"dev": "vite serve",
"build": "tsc --p ./tsconfig-build.json && vite build",
"preview": "vite preview",
"dependency-cruise": "dependency-cruise -T dot -x node_modules -v -- src/index.ts | dot -T svg > dependencies.svg"
},
"repository": {
"type": "git",
"url": "git+https://github.com/basilgass/PiDraw.git"
},
"keywords": [
"math",
"drawing",
"geometry",
"plot"
],
"author": "Basil Gass",
"license": "MIT",
"bugs": {
"url": "https://github.com/basilgass/PiDraw/issues"
},
"homepage": "https://github.com/basilgass/PiDraw#readme",
"dependencies": {
"@svgdotjs/svg.draggable.js": "^3.0.4",
"@svgdotjs/svg.js": "^3.2.4",
"piparser": "^0.0.9"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/eslint__js": "^8.42.3",
"autoprefixer": "^10.4.20",
"dependency-cruiser": "^16.4.0",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.10",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0",
"vite": "^5.4.2",
"vite-plugin-dts": "^4.0.3",
"vitest": "^2.0.5"
}
}