-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.85 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "soundpad.js",
"version": "2.6.0",
"description": "An npm package for interacting with Soundpad.",
"main": "lib/index.js",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"import": "./lib/esm/index.js"
},
"./lib/web": {
"types": "./lib/web.d.ts",
"require": "./lib/web.js",
"import": "./lib/esm/web.js"
}
},
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc & tsc -p tsconfig.esm.json",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "echo \"Tests are not implemented yet\"",
"doc": "typedoc src/index.ts",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Seblor/soundpad.js"
},
"keywords": [
"soundpad",
"automation"
],
"author": "Seblor",
"license": "MIT",
"bugs": {
"url": "https://github.com/Seblor/soundpad.js/issues"
},
"homepage": "https://github.com/Seblor/soundpad.js#readme",
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^28.2.0",
"jest": "29.3.1",
"prettier": "2.8.1",
"ts-jest": "29.0.3",
"ts-standard": "^12.0.2",
"typedoc": "^0.25.13",
"typedoc-plugin-missing-exports": "^2.2.0",
"typedoc-plugin-rename-defaults": "^0.7.0",
"typescript": "^5.4.5"
},
"files": [
"lib/**/*"
],
"dependencies": {
"fast-xml-parser": "^4.1.2",
"iconv-lite": "^0.6.3"
},
"ts-standard": {
"project": "./tsconfig.json"
}
}