-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.36 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.36 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
{
"name": "wasmxjs",
"version": "0.0.1",
"description": "",
"main": "dist/src/index.js",
"browser": "dist/index.umd.js",
"module": "dist/index.esm.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"clean": "rm -rf dist",
"build": "yarn clean && tsc --outDir dist/src --declarationDir dist/types --declaration true && rollup -c",
"dev": "yarn clean && tsc --outDir dist/src --declarationDir dist/types --declaration true && rollup -c -w",
"pretest": "yarn build",
"pub": "yarn build && yarn publish"
},
"author": "Loredana Cirstea",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@babel/core": "^7.25.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.1",
"@types/text-encoding-utf-8": "^1",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"rollup": "^4.21.2",
"text-encoding-utf-8": "^1.0.2",
"ts-jest": "^29.2.5",
"tslib": "^2.7.0",
"typescript": "^5.5.4"
},
"files": [
"dist",
"src",
"test"
],
"type": "module",
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@4.4.1"
}