-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "@flowplayer/translations",
"version": "2.0.0",
"description": "Translation files for flowplayer",
"main": "dist/index.js",
"module": "dist/esm/flowplayer.lang.all.js",
"types": "dist/dts/index.d.ts",
"scripts": {
"lint": "npx tsc",
"rollup": "rm -rf dist && rollup --config rollup.config.ts --configPlugin typescript --bundleConfigAsCjs ",
"build": "npm run rollup",
"prebuild": "rm -rf dist/",
"prepare": "npm run build",
"test": "npx ava"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm",
"--experimental-vm-modules"
]
},
"files": [
"dist/dts/index.d.ts",
"dist/esm/flowplayer.lang.all.js",
"dist/index.js",
"LICENSE.md"
],
"author": "Flowplayer Authors <[email protected]>",
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"ava": "^5.3.1",
"rollup": "^4.1.4",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-ts": "^3.4.5",
"tmp": "0.0.33",
"tslint": "^5.13.0",
"tsx": "^3.12.7",
"typescript": "^5.2.2"
},
"volta": {
"node": "18.18.2"
},
"dependencies": {
"@types/node": "^20.8.10",
"ts-node": "^10.9.1"
}
}