-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"version": "1.0.4",
"private": true,
"name": "perfect-cursors",
"description": "Perfect interpolation for animated multiplayer cursors.",
"author": "@steveruizok",
"repository": {
"type": "git",
"url": "git+https://github.com/steveruizok/perfect-cursors/perfect-cursors.git"
},
"license": "MIT",
"workspaces": [
"perfect-cursors",
"example"
],
"keywords": [
"cursors",
"animated",
"multiplayer"
],
"scripts": {
"start": "lerna run start --stream --parallel",
"build": "lerna run build --stream --parallel",
"lint": "eslint src/ --ext .ts,.tsx",
"clean": "rm -rf dist",
"test": "lerna run jest",
"test:ci": "lerna run jest:ci"
},
"devDependencies": {
"@swc-node/jest": "^1.3.3",
"@tldraw/vec": "^1.4.3",
"@types/jest": "^27.0.2",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"config": "*",
"esbuild": "^0.14.10",
"eslint": "^7.32.0",
"jest": "^27.3.1",
"lerna": "^4.0.0",
"prettier": "^2.4.1",
"tsconfig": "*",
"tslib": "^2.3.0",
"typedoc": "^0.22.3",
"typescript": "^4.5.2"
}
}