-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.26 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
{
"name": "@123ishatest/igt-library",
"version": "1.0.0",
"description": "A collection of useful scripts to help you develop incremental games",
"homepage": "https://github.com/123ishaTest/igt-library",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/123ishaTest/igt-library/issues"
},
"author": "Isha",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"deploy": "npm run build && npx changeset publish",
"preview": "vite preview",
"lint": "prettier --check .",
"format": "prettier --write .",
"test": "vitest"
},
"dependencies": {
"lodash-es": "^4.17.21",
"mousetrap": "^1.6.5",
"strongly-typed-events": "^3.0.11"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/lodash-es": "^4.17.12",
"@types/mousetrap": "^1.6.15",
"@types/node": "^20.11.19",
"jsdom": "^24.0.0",
"prettier": "^3.2.5",
"typescript": "^5.2.2",
"vite": "^5.1.0",
"vite-plugin-dts": "^3.7.2",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.3.0"
},
"files": [
"/dist",
"README.md",
"package.json"
]
}