-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.42 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.42 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@nkeff/cardboard-js",
"version": "0.1.0",
"description": "Fast, light & ultra-compact library for composing interactive web apps—all in plain JavaScript or TypeScript, no HTML required.",
"type": "module",
"main": "dist/cardboard.cjs.js",
"module": "dist/cardboard.js",
"unpkg": "dist/cardboard.global.js",
"types": "dist/cardboard.d.ts",
"files": [
"dist/**/*",
"examples/**/*",
"src/**/*"
],
"scripts": {
"test": "jest --coverage",
"lint": "eslint ./src/**/*.ts",
"test:watch": "jest --coverage --watchAll",
"build:tsup": "rimraf dist && tsup",
"build": "./scripts/build.sh",
"build:extensions": "tsup --config ./tsup.extensions.ts",
"build:source": "rimraf dist && tsc --p tsconfig.json && npm run copy:definitions",
"build:watch": "tsup --watch",
"build:example": "tsc --p examples/tsconfig.json",
"build:example:login": "tsc --p examples/login-page/tsconfig.json",
"build:example:watch": "tsc --watch --p examples/tsconfig.json",
"build:docs": "typedoc --out docs src/*.ts",
"build:bundle:main": "esbuild --bundle --global-name=Cardboard --outfile=dist/bundle/cardboard.bundle.min.js --minify src/cardboard.ts",
"build:bundle:main:nomin": "esbuild --bundle --global-name=Cardboard --outfile=dist/bundle/cardboard.bundle.js src/cardboard.ts",
"copy:definitions": "./scripts/copy_definitions.sh"
},
"author": "nombrekeff",
"repository": {
"git": "https://github.com/nombrekeff/cardboard-js"
},
"license": "ISC",
"devDependencies": {
"@tweenjs/tween.js": "^21.0.0",
"@types/jest": "^29.5.5",
"@types/jsdom": "^21.1.3",
"@types/node": "^22.15.30",
"@types/tween.js": "^18.6.1",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"conventional-changelog": "^7.0.2",
"esbuild": "^0.19.5",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.0.0",
"jsdom": "^22.1.0",
"lite-server": "^2.6.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"tsup": "^8.5.0",
"typedoc": "^0.28.7",
"typescript": "^5.8.3"
},
"dependencies": {
"fast-deep-equal": "^3.1.3"
}
}