-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "ts-flp",
"version": "1.0.5",
"description": "Minimalist TypeScript library for parsing and modifying FL Studio project files (.flp)",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "ts-node index.ts",
"build": "npm run clean && tsup && tsc --emitDeclarationOnly --declaration --outDir dist",
"clean": "node -e \"require('fs').rmSync('dist', {recursive:true, force:true})\"",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:dump-info": "node --loader ts-node/esm test/dump-all-info.ts",
"lint": "eslint .",
"format": "prettier -w .",
"commit": "git add . && git commit -m",
"commit:s": "git add . && git commit -S -m",
"prepublishOnly": "npm run build && npm run test"
},
"keywords": [
"fl-studio",
"flp",
"parser",
"daw",
"music-production",
"audio",
"fruity-loops",
"project-file"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SpendLessDaw/ts-flp"
},
"bugs": {
"url": "https://github.com/SpendLessDaw/ts-flp/issues"
},
"homepage": "https://github.com/SpendLessDaw/ts-flp",
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.18.1",
"dependencies": {
"protobufjs": "^8.0.0",
"smart-buffer": "^4.2.0"
},
"devDependencies": {
"@types/node": "^25.0.10",
"tsup": "^8.4.0",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}