forked from ruffle-rs/ruffle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 2.09 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": ">=10.2.5"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"@wdio/cli": "^8.27.1",
"@wdio/local-runner": "^8.27.0",
"@wdio/mocha-framework": "^8.27.0",
"@wdio/spec-reporter": "^8.27.0",
"@wdio/static-server-service": "^8.27.0",
"chai": "^4.3.10",
"chai-html": "^2.1.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"mocha": "^10.2.0",
"prettier": "^3.1.1",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-prettier": "^4.1.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"wdio-chromedriver-service": "^8.1.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"optionalDependencies": {
"chromedriver": "^119.0.1"
},
"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_CARGO_CLEAN=true ENABLE_VERSION_SEAL=true npm run build",
"demo": "npm run preview --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"
}
}