-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
89 lines (89 loc) · 3.04 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "iink-ts",
"version": "2.0.1",
"description": "iinkTS is the fastest way to integrate handwriting panel and recognition in your webapp",
"license": "Apache-2.0",
"private": false,
"main": "dist/iink.min.js",
"module": "dist/iink.esm.js",
"type": "module",
"types": "dist/iink.d.ts",
"keywords": [
"myscript",
"javascript",
"typescript",
"developer",
"handwriting",
"recognition",
"cloud",
"iink"
],
"files": [
"dist",
"package.json"
],
"homepage": "https://myscript.github.io/iinkTS/",
"repository": "git://github.com/MyScript/iinkTS.git",
"scripts": {
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"dev": "rollup -c config/rollup.config.dev.mjs -w --sourcemap",
"dev:tldraw": "cd ./examples/offscreen-interactivity/offscreen_interactivity_tldraw && yarn dev",
"test:unit": "jest --config=jest.unit.config.js",
"test:integration": "jest --config=jest.integration.config.js",
"copy:to:tldraw": "cp -r dist/ examples/offscreen-interactivity/offscreen_interactivity_tldraw/node_modules/iink-ts/",
"install:tldraw": "cd ./examples/offscreen-interactivity/offscreen_interactivity_tldraw && yarn install",
"prepare:tldraw": "npm-run-all build:lib copy:to:tldraw",
"build:tldraw": "cd ./examples/offscreen-interactivity/offscreen_interactivity_tldraw && yarn build",
"build:lib": "rollup -c config/rollup.config.build.mjs --sourcemap",
"build:docs": "typedoc",
"build": "npm-run-all lint:fix test:unit build:lib build:docs copy:to:tldraw build:tldraw"
},
"dependencies": {
"json-css": "^1.5.6"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"babel-jest": "^29.7.0",
"eslint": "^8.52.0",
"eslint-plugin-jest": "^27.4.3",
"eslint-plugin-playwright": "^1.5.4",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-fetch-mock": "^3.0.3",
"jest-image-snapshot": "^6.4.0",
"jest-playwright-preset": "^4.0.0",
"jest-transform-css": "^6.0.1",
"jest-websocket-mock": "^2.5.0",
"npm-run-all": "^4.1.5",
"playwright": "^1.43.0",
"postcss": "^8.4.31",
"rollup": "^4.1.4",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "^2.0.2",
"rollup-plugin-svg-import": "^3.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-web-worker-loader": "^1.6.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typedoc": "^0.25.2",
"typedoc-plugin-missing-exports": "^2.1.0",
"typescript": "^5.2.2"
},
"resolutions": {
"**/loader-utils": "3.2.1",
"**/json5": "2.2.3"
}
}