pixospritz-core 0.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +437 -0
- package/README.md +302 -0
- package/dist/bundle.js +3 -0
- package/dist/bundle.js.LICENSE.txt +31 -0
- package/dist/bundle.js.map +1 -0
- package/package.json +76 -0
package/package.json
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pixospritz-core",
|
|
3
|
+
"version": "0.10.1",
|
|
4
|
+
"description": "Pixos is a mini interactive spritz avatar plugin for calliope static site generator for generating pixospritz'.",
|
|
5
|
+
"main": "dist/bundle.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
8
|
+
"clean": "rimraf build",
|
|
9
|
+
"compile": "yarn clean && cross-env NODE_ENV=production babel pixospritz/src --out-dir build --copy-files --ignore __tests__,spec.js,test.js,stories.js,__snapshots__",
|
|
10
|
+
"webpack": "npx webpack",
|
|
11
|
+
"lint": "cd pixoscript && yarn typecheck",
|
|
12
|
+
"lint:editor": "cd editor && yarn lint",
|
|
13
|
+
"lint:player": "cd player && yarn lint",
|
|
14
|
+
"start:player": "cd player && yarn start",
|
|
15
|
+
"start:editor": "cd editor && yarn start",
|
|
16
|
+
"start:server": "node server/v2/main.js",
|
|
17
|
+
"start:server:legacy": "node server/v1/main.js"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist",
|
|
21
|
+
"README.md"
|
|
22
|
+
],
|
|
23
|
+
"keywords": [
|
|
24
|
+
"calliope",
|
|
25
|
+
"pixos",
|
|
26
|
+
"html5",
|
|
27
|
+
"game",
|
|
28
|
+
"react",
|
|
29
|
+
"webgl",
|
|
30
|
+
"canvas"
|
|
31
|
+
],
|
|
32
|
+
"homepage": "https://pixospritz.com",
|
|
33
|
+
"repository": {
|
|
34
|
+
"url": "https://github.com/ConflictingTheories/calliope-pixos.git",
|
|
35
|
+
"type": "git"
|
|
36
|
+
},
|
|
37
|
+
"author": "Kyle Derby MacInnis",
|
|
38
|
+
"license": "Attribution-NonCommercial-ShareAlike 4.0 International",
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@babel/cli": "^7.17.10",
|
|
41
|
+
"@babel/core": "^7.18.0",
|
|
42
|
+
"@babel/node": "^7.17.10",
|
|
43
|
+
"@babel/preset-env": "^7.18.0",
|
|
44
|
+
"@babel/preset-react": "^7.17.12",
|
|
45
|
+
"@babel/register": "^7.17.7",
|
|
46
|
+
"babel-plugin-macros": "^3.1.0",
|
|
47
|
+
"babel-register": "^6.26.0",
|
|
48
|
+
"buffer": "^6.0.3",
|
|
49
|
+
"cross-env": "^7.0.3",
|
|
50
|
+
"react-recollect": "^5.2.3",
|
|
51
|
+
"webpack": "^5.72.1",
|
|
52
|
+
"webpack-cli": "^4.9.2",
|
|
53
|
+
"webpack-dev-server": "^4.9.0"
|
|
54
|
+
},
|
|
55
|
+
"peerDependencies": {
|
|
56
|
+
"react": "^17.0.0 || ^18.0.0",
|
|
57
|
+
"react-dom": "^17.0.0 || ^18.0.0",
|
|
58
|
+
"react-recollect": "^5.2.3"
|
|
59
|
+
},
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"babel-loader": "^8.2.5",
|
|
62
|
+
"css-loader": "^6.7.1",
|
|
63
|
+
"dexie": "^3.2.0",
|
|
64
|
+
"file-saver": "^2.0.5",
|
|
65
|
+
"gl-transition": "^1.13.0",
|
|
66
|
+
"jszip": "^3.7.1",
|
|
67
|
+
"luaparse": "^0.3.1",
|
|
68
|
+
"pixoscript": "^1.0.1",
|
|
69
|
+
"printj": "^1.3.1",
|
|
70
|
+
"prop-types": "^15.7.2",
|
|
71
|
+
"realtime-bpm-analyzer": "^2.1.6",
|
|
72
|
+
"style-loader": "^3.3.1",
|
|
73
|
+
"uuid": "^13.0.0",
|
|
74
|
+
"ws": "^8.18.3"
|
|
75
|
+
}
|
|
76
|
+
}
|