-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.94 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.94 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
69
70
71
72
73
{
"name": "koggle",
"version": "1.3.1",
"description": "Boggle as a React component",
"browserslist": "> 0.5%, last 2 versions, not dead",
"type": "module",
"main": "dist/package/Boggle.js",
"module": "dist/package/Boggle.js",
"export": "dist/package/Boggle.js",
"types": "dist/package/Boggle.d.ts",
"files": [
"dist/package/*"
],
"targets": {
"package": {
"source": "src/Boggle.tsx",
"isLibrary": true,
"context": "browser",
"outputFormat": "esmodule",
"includeNodeModules": {
"react": false
}
},
"pages": {
"source": "src/dev-page/index.html",
"isLibrary": false,
"context": "browser",
"outputFormat": "esmodule"
}
},
"scripts": {
"check": "tsc",
"lint": "eslint --max-warnings=0 src",
"test": "jest",
"start": "parcel serve --target pages",
"build": "npm run check && parcel build --target package",
"build-pages": "npm run check && parcel build --target pages"
},
"author": "kclapper",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kclapper/Koggle.git"
},
"bugs": {
"url": "https://github.com/kclapper/Koggle/issues"
},
"homepage": "https://boggle.kyleclapper.com",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@parcel/bundler-experimental": "^2.7.0",
"@parcel/config-default": "^2.11.0",
"@parcel/transformer-sass": "^2.9.3",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"bootstrap": "^5.3.2",
"bootstrap-icons": "^1.11.3",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"parcel": "^2.9.3",
"process": "^0.11.10",
"react-bootstrap": "^2.9.2",
"sharp": "^0.31.3",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"react": "^18.2.0"
}
}