-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "pixidom.js",
"version": "0.0.9",
"description": "Simple to use lib that immitates dom elements in pixi.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "mocha --recursive --require ts-node/register 'test/**/*.test.ts' --exit"
},
"main": "lib/pixidom.js",
"module": "lib/pixidom.es.js",
"types": "lib/index.d.ts",
"author": "visgotti",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/pixi.js": "^4.8.7",
"chai": "^4.2.0",
"elliptic": "^6.5.3",
"mocha": "^6.1.4",
"ts-loader": "^6.0.1",
"ts-node": "^8.1.0",
"typescript": "^5.3.3",
"vite": "^6.0.11",
"vite-plugin-dts": "^4.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/visgotti/PixiDom.git"
},
"bugs": {
"url": "https://github.com/visgotti/PixiDom/issues"
},
"homepage": "https://github.com/visgotti/PixiDom#readme",
"dependencies": {
"gotti-color-tween": "^0.1.2",
"tween-functions": "^1.2.0"
}
}