-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.43 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@unreal/pan",
"version": "0.0.23",
"main": "dist/pan.cjs.js",
"module": "dist/pan.es.js",
"types": "dist/Pan.d.ts",
"files": [
"dist"
],
"scripts": {
"webpackBuild": "webpack --mode production",
"webpackWatch": "webpack --watch",
"lint": "eslint . --ext .ts",
"lint-fix": "npm run lint -- --fix",
"generate-declarations": "npx -p typescript tsc src/Pan.ts --declaration --target es2020 --skipLibCheck --emitDeclarationOnly --declarationDir dist --experimentalDecorators",
"generate-single-declarations": "npx -p typescript tsc src/Pan.ts --declaration --emitDeclarationOnly --out dist/index.d.ts --target es2020 --experimentalDecorators --skipLibCheck",
"test": "jest",
"test-debug": "jest --silent=false --verbose false",
"build": "npm run vite && npm run webpackBuild",
"build-site": "npm run build",
"webpackServe": "webpack serve",
"vite": "vite build && tsc --emitDeclarationOnly"
},
"keywords": [],
"author": "Ariel Saldana",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ArielSaldana/Pan.git"
},
"bugs": {
"url": "https://github.com/ArielSaldana/Pan/issues"
},
"homepage": "https://github.com/ArielSaldana/Pan#readme",
"description": "",
"devDependencies": {
"@jest/globals": "^29.3.1",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"eslint": "^8.25.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.1.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.3.1",
"puppeteer": "^19.4.0",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"vite": "^4.0.4",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"dependencies": {
"circular-dependency-plugin": "^5.2.2"
}
}