-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "@damienvesper/canvas-map",
"description": "A library for HTML5 Canvas.",
"version": "1.0.0",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"build": "tsc",
"dev:lint": "eslint . --fix --ext .ts",
"dev:lint:ci": "eslint . --ext .ts",
"cd:prepublish": "pnpm build && cp package.json ./dist/package.json"
},
"engines": {
"node": ">=18.1.0",
"pnpm": ">=7.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DamienVesper/CanvasMap"
},
"contributors": [
"DamienVesper"
],
"devDependencies": {
"@types/node": "^17.0.45",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"typescript": "^4.7.4"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}