-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.81 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
{
"name": "web-pen-sdk",
"version": "0.7.3",
"description": "NeoSmartpen TypeScript (Web) Pen SDK Library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"Test"
],
"scripts": {
"start": "node examples/server.js",
"build:webpack": "rm -rf dist && webpack",
"build": "rm -rf dist && tsc && npm run convertNPROJ && cp -r ./src/API/nproj ./dist/API/nproj",
"watch": "tsc -w",
"test": "jest",
"clean": "rm -rf dist & rm -rf node_modules & rm package-lock.json & rm yarn.lock",
"prepare": "yarn build",
"deploy": "yarn publish",
"convertNPROJ": "node ./src/Util/converterNPROJ.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neostudio-io/webPenSDK.git"
},
"keywords": [],
"author": "Wonho Seo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/neostudio-io/webPenSDK/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/neostudio-io/webPenSDK#readme",
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.10",
"@types/jest": "^26.0.23",
"@types/jquery": "^3.5.14",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^11.0.0",
"css-minimizer-webpack-plugin": "^6.0.0",
"jest": "^27.0.4",
"webpack": "5.76.0",
"xml2js": "^0.6.2"
},
"dependencies": {
"@types/web-bluetooth": "0.0.14",
"clean-webpack-plugin": "^3.0.0",
"firebase": "^10.8.0",
"jquery": "^4.0.0",
"jszip": "^3.10.0",
"terser-webpack-plugin": "^5.1.1",
"typescript": "^4.2.3",
"webpack-cli": "^4.5.0",
"webpack-merge": "^5.7.3"
},
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}