-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.2 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.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
78
79
80
81
82
83
84
85
86
87
{
"name": "nf-player",
"version": "0.12.0",
"description": "The Native Format Smart Player, JS Edition",
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"source": "./src/index.ts",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"bin": {
"nf-player": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nativeformat/NFPlayerJS.git"
},
"packageManager": "pnpm@11.2.2",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsdown",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -b",
"typecheck:force": "tsc -b --force --listFiles --extendedDiagnostics",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"validate": "publint",
"clean": "rm -rf dist docs",
"gen:docs": "typedoc",
"prepack": "pnpm run build",
"prepare": "husky"
},
"author": "Drew Petersen <kirbysayshi@gmail.com>",
"license": "Apache-2.0",
"dependencies": {
"@types/pseudo-audio-param": "1.3.3",
"debug": "4.4.3",
"nf-grapher": "1.2.24",
"pseudo-audio-param": "1.3.1",
"soundtouch-ts": "1.1.1",
"wav-decoder": "1.3.0",
"wav-encoder": "1.3.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/debug": "4.1.13",
"@types/node": "25.9.1",
"eslint": "10.4.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-license-header": "0.9.0",
"eslint-plugin-simple-import-sort": "13.0.0",
"husky": "9.1.7",
"lint-staged": "17.0.5",
"prettier": "3.8.3",
"publint": "0.3.21",
"tsdown": "0.22.0",
"typedoc": "0.28.19",
"typescript": "6.0.3",
"typescript-eslint": "8.59.4",
"vitest": "4.1.7",
"web-audio-test-api": "0.5.2"
},
"lint-staged": {
"*.{js,ts,tsx,json,md,css,yaml,yml}": "prettier --write",
"*.{js,ts,tsx}": "eslint --fix"
}
}