forked from ruffle-rs/ruffle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 2.05 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
{
"name": "ruffle",
"version": "0.1.0",
"description": "Root project of ruffle web",
"license": "(MIT OR Apache-2.0)",
"private": true,
"workspaces": [
"./packages/*"
],
"engines": {
"npm": ">=7"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@wdio/cli": "^8.5.9",
"@wdio/local-runner": "^8.5.9",
"@wdio/mocha-framework": "^8.5.6",
"@wdio/spec-reporter": "^8.4.0",
"@wdio/static-server-service": "^8.4.0",
"chai": "^4.3.7",
"chai-html": "^2.1.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"prettier": "^2.8.4",
"stylelint": "^15.2.0",
"stylelint-config-standard": "^33.0.0",
"stylelint-prettier": "^3.0.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.0",
"wdio-chromedriver-service": "^8.1.1",
"webpack": "^5.76.1",
"webpack-cli": "^5.0.1"
},
"optionalDependencies": {
"chromedriver": "^113.0.0"
},
"scripts": {
"build": "npm run build --workspace=ruffle-core && npm run build --workspace=ruffle-demo --workspace=ruffle-extension --workspace=ruffle-selfhosted",
"build:debug": "cross-env NODE_ENV=development CARGO_FEATURES=avm_debug npm run build",
"build:dual-wasm": "cross-env ENABLE_WASM_EXTENSIONS=true npm run build",
"build:repro": "cross-env ENABLE_WASM_EXTENSIONS=true ENABLE_VERSION_SEAL=true npm run build",
"demo": "npm start --workspace ruffle-demo",
"test": "npm test --workspaces --if-present",
"docs": "npm run docs --workspaces --if-present",
"lint": "eslint . && stylelint **.css",
"format": "eslint . --fix && stylelint --fix **.css",
"version-seal": "cross-env ENABLE_VERSION_SEAL=true node packages/core/tools/set_version.js"
}
}