-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 876 Bytes
/
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
{
"name": "shaporize",
"version": "0.1.0",
"description": "A memory game written in TypeScript",
"main": "index.js",
"scripts": {
"build": "rimraf dist pkg && webpack",
"start": "rimraf dist pkg && npx webpack serve",
"test": "cargo test && wasm-pack test --headless"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Winor/Shaporize.git"
},
"author": "Winor",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Winor/Shaporize/issues"
},
"homepage": "https://github.com/Winor/Shaporize#readme",
"devDependencies": {
"@wasm-tool/wasm-pack-plugin": "^1.6.0",
"copy-webpack-plugin": "^5.0.3",
"rimraf": "^3.0.0",
"typescript": "^4.1.3",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3"
},
"dependencies": {
"ts-loader": "^9.2.8"
}
}