-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.27 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.27 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
{
"name": "@curiouslearning/core",
"version": "1.0.0",
"description": "A collection of reusable core features, classes and functionalities used to create web-based apps and games.",
"main": "./dist/index.js",
"private": false,
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"README.md",
"dist"
],
"scripts": {
"build": "webpack -c ./webpack.config.js",
"dev": "webpack serve -c webpack.config.dev.js",
"test": "jest"
},
"sideEffects": false,
"author": "curiouslearning",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.13.10",
"@types/webpack": "^5.28.5",
"babel-jest": "^30.2.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^26.1.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.6",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@songbaek/fifo-map": "^0.0.0",
"zod": "^4.3.5"
}
}