labrute-fla-parser 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. package/README.md +16 -0
  2. package/Symbols.d.ts +663 -0
  3. package/Symbols.js +334715 -0
  4. package/package.json +73 -0
package/package.json ADDED
@@ -0,0 +1,73 @@
1
+ {
2
+ "name": "labrute-fla-parser",
3
+ "version": "1.0.1",
4
+ "description": "",
5
+ "main": "Symbols.js",
6
+ "module": "Symbols.js",
7
+ "types": "Symbols.d.ts",
8
+ "scripts": {
9
+ "build": "rollup --config && rollup --config rollup-declarations.config.mjs && rm -r src",
10
+ "test": "webpack-dev-server --mode development",
11
+ "deploy": "bash ./release-dist.bash",
12
+ "export-xml": "ts-node ./src/exportXmlAsJson.ts"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/Zenoo/labrute-sla-parser.git"
17
+ },
18
+ "bugs": {
19
+ "url": "https://github.com/Zenoo/labrute-sla-parser/issues"
20
+ },
21
+ "homepage": "https://github.com/Zenoo/labrute-sla-parser#readme",
22
+ "keywords": [
23
+ "twinoid",
24
+ "muxxu",
25
+ "motion-twin",
26
+ "mybrute",
27
+ "labrute",
28
+ "parser",
29
+ "fla",
30
+ "xml"
31
+ ],
32
+ "author": "Zenoo",
33
+ "license": "MIT",
34
+ "devDependencies": {
35
+ "@babel/core": "^7.17.8",
36
+ "@babel/preset-env": "^7.16.4",
37
+ "@babel/preset-typescript": "^7.16.7",
38
+ "@pixi/filter-glow": "^5.2.1",
39
+ "@pixi/ticker": "^7.3.2",
40
+ "@rollup/plugin-json": "^6.0.1",
41
+ "@typescript-eslint/eslint-plugin": "^5.18.0",
42
+ "@typescript-eslint/parser": "^5.18.0",
43
+ "babel-loader": "^8.2.3",
44
+ "dotenv": "^10.0.0",
45
+ "eslint": "^7.32.0",
46
+ "eslint-config-prettier": "^6.11.0",
47
+ "eslint-plugin-import": "^2.24.2",
48
+ "eslint-plugin-prettier": "^3.1.4",
49
+ "html-webpack-plugin": "^5.5.0",
50
+ "pixi.js": "^7.3.2",
51
+ "rollup": "^4.2.0",
52
+ "rollup-plugin-dts": "^6.1.0",
53
+ "rollup-plugin-typescript2": "^0.36.0",
54
+ "ts-node": "^10.9.1",
55
+ "typescript": "^4.6.3",
56
+ "webpack": "^5.65.0",
57
+ "webpack-cli": "^4.9.1",
58
+ "webpack-dev-server": "^4.7.1",
59
+ "xml-js": "^1.6.11"
60
+ },
61
+ "browserslist": {
62
+ "production": [
63
+ ">0.2%",
64
+ "not dead",
65
+ "not op_mini all"
66
+ ],
67
+ "development": [
68
+ "last 1 chrome version",
69
+ "last 1 firefox version",
70
+ "last 1 safari version"
71
+ ]
72
+ }
73
+ }