-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 699 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 699 Bytes
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
{
"author": "Florian Imdahl <git@ffflorian.de>",
"bin": "dist/cli.js",
"description": "Flood pixels",
"devDependencies": {
"@types/node": "~24",
"tsx": "4.21.0",
"typescript": "6.0.2",
"vitest": "4.1.2"
},
"files": [
"dist"
],
"license": "GPL-3.0",
"module": "dist/index.js",
"name": "pixelflut",
"readme": "https://github.com/ffflorian/node-packages#readme",
"repository": "https://github.com/ffflorian/node-packages.git",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf dist",
"dist": "yarn clean && yarn build",
"start": "tsx src/cli.ts",
"test": "vitest run"
},
"type": "module",
"version": "1.17.1"
}