-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
67 lines (67 loc) · 1.46 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
{
"name": "ts-audio",
"version": "0.7.4",
"author": "evandrolg",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.modern.mjs",
"umd:main": "dist/index.umd.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"sideEffects": false,
"scripts": {
"size": "npm run build && size-limit",
"test": "jest",
"lint": "eslint src/",
"build": "./scripts/build.sh",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test"
}
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@size-limit/preset-small-lib": "^8.1.2",
"@types/jest": "^29.2.0",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"microbundle": "^0.15.1",
"prettier": "2.8.0",
"size-limit": "^8.1.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"keywords": [
"audio",
"song",
"playlist",
"AudioContext"
],
"size-limit": [
{
"path": "./dist/index.js",
"limit": "1.60 KB"
},
{
"path": "./dist/index.modern.mjs",
"limit": "1.60 KB"
},
{
"path": "./dist/index.umd.js",
"limit": "1.70 KB"
}
]
}