forked from dxfjs/writer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.67 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
{
"name": "@tarikjabiri/dxf",
"version": "2.7.0",
"description": "A JavaScript interface to Dxf written in TypeScript.",
"main": "./lib/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/index.d.ts",
"repository": "https://github.com/dxfjs/writer",
"author": "Tarik EL JABIRI",
"license": "MIT",
"homepage": "https://dxf.vercel.app",
"bugs": {
"url": "https://github.com/dxfjs/writer/issues",
"email": "[email protected]"
},
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "rollup -c",
"example": "node examples/example.js",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"eslint": "eslint . --fix",
"dev": "esbuild src/index.ts --format=cjs --bundle --outfile=dist/index.js"
},
"files": [
"lib/**/*"
],
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitest/coverage-c8": "^0.29.8",
"del": "^7.0.0",
"esbuild": "^0.17.15",
"eslint": "^8.37.0",
"rollup": "^3.20.2",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-typescript2": "^0.34.1",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^5.0.3",
"vitepress": "1.0.0-alpha.65",
"vitest": "^0.29.8",
"vue": "^3.2.47"
},
"funding": "https://github.com/sponsors/dxfjs",
"keywords": [
"js-dxf",
"ts-dxf",
"dxf",
"writer",
"js",
"ts"
],
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search"
]
}
}
}