-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.4 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
{
"name": "@ineka/engine",
"type": "module",
"version": "2.3.0",
"description": "A small and customizable game engine",
"author": "Colin Espinas",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ineka-dev/engine.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "rollup -w --config rollup.config.ts --configPlugin typescript",
"build": "rollup --config rollup.config.ts --configPlugin typescript --environment NODE_ENV:production",
"docs:generate": "typedoc",
"docs:serve": "serve docs",
"lint": "eslint . --flag unstable_ts_config",
"lint:fix": "eslint . --fix --flag unstable_ts_config",
"release:publish": "changeset publish",
"release:version": "changeset version"
},
"dependencies": {
"nanoid": "^5.0.7"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^22.4.2",
"esbuild": "^0.23.1",
"eslint": "^9.9.0",
"rollup": "^4.21.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"serve": "^14.2.3",
"tslib": "^2.6.3",
"typedoc": "^0.26.6",
"typescript": "~5.5.4"
},
"publishConfig": {
"access": "public"
}
}