-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
37 lines (37 loc) · 981 Bytes
/
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
{
"name": "@mml-io/mml-web",
"version": "0.19.0",
"publishConfig": {
"access": "public"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"type": "module",
"files": [
"/build"
],
"scripts": {
"type-check": "tsc --noEmit",
"build": "tsx ./build.ts --build",
"iterate": "tsx ./build.ts --watch",
"lint": "eslint \"./**/*.{js,jsx,ts,tsx}\" --max-warnings 0",
"lint-fix": "eslint \"./**/*.{js,jsx,ts,tsx}\" --fix",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test-iterate": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch"
},
"dependencies": {
"@mml-io/networked-dom-web": "^0.19.0"
},
"devDependencies": {
"jest-canvas-mock": "2.5.2",
"jest-environment-jsdom": "29.7.0",
"jest-expect-message": "1.1.3",
"jest-fetch-mock": "3.0.3",
"resize-observer-polyfill": "1.5.1"
},
"babel": {
"presets": [
"@babel/preset-typescript"
]
}
}