-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.64 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
{
"name": "aframe-typescript-class-components",
"version": "0.3.3",
"description": "A simple tool for writing Aframe components as TypeScript classes.",
"keywords": [
"aframe",
"typescript"
],
"author": "Will Ockelmann-Wagner <will@willwow.dev>",
"license": "MIT",
"homepage": "https://github.com/will-wow/aframe-typescript-class-components",
"bugs": "https://github.com/will-wow/aframe-typescript-class-components/issues",
"repository": "github:will-wow/aframe-typescript-class-components",
"private": false,
"main": "dist/aframe-typescript-class-components.js",
"module": "dist/aframe-typescript-class-components.es.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "rollup --config",
"lint": "npm-run-all lint:*",
"lint:eslint": "eslint './**/*.{ts,js}'",
"lint:prettier": "prettier --check './**/*.{ts,html,md,json}'",
"format": "npm-run-all format:*",
"format:eslint": "eslint --fix './**/*.{ts,js}'",
"format:prettier": "prettier --write './**/*.{ts,html,md,json}'"
},
"dependencies": {},
"devDependencies": {
"@types/aframe": "^1.0.3",
"@types/three": "^0.103.2",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"aframe": "^1.1.0",
"eslint": "^7.19.0",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rollup": "^2.38.4",
"rollup-plugin-typescript2": "^0.29.0",
"three": "^0.125.2",
"ts-jest": "^26.5.0",
"typescript": "^4.3.2"
},
"peerDependencies": {
"@types/aframe": ">=1.0.3",
"@types/three": ">=0.103.2"
}
}