@measured/puck 0.8.0-canary.f4b0563 → 0.9.0-canary.222697e
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +64 -0
- package/dist/index.js +428 -205
- package/package.json +12 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@measured/puck",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.9.0-canary.222697e",
|
4
4
|
"private": false,
|
5
5
|
"main": "./dist/index.js",
|
6
6
|
"types": "./dist/index.d.ts",
|
@@ -8,6 +8,7 @@
|
|
8
8
|
"scripts": {
|
9
9
|
"lint": "eslint \"**/*.ts*\"",
|
10
10
|
"build": "rm -rf dist && tsup index.ts",
|
11
|
+
"test": "jest",
|
11
12
|
"prepare": "cp ../../README.md . && yarn build",
|
12
13
|
"postpublish": "rm README.md"
|
13
14
|
},
|
@@ -15,19 +16,29 @@
|
|
15
16
|
"dist"
|
16
17
|
],
|
17
18
|
"devDependencies": {
|
19
|
+
"@testing-library/react": "^14.0.0",
|
20
|
+
"@types/deep-diff": "^1.0.3",
|
21
|
+
"@types/event-emitter": "^0.3.3",
|
22
|
+
"@types/jest": "^29.5.4",
|
18
23
|
"@types/react": "^18.2.0",
|
19
24
|
"@types/react-beautiful-dnd": "^13.1.4",
|
20
25
|
"@types/react-dom": "^18.2.0",
|
21
26
|
"eslint": "^7.32.0",
|
22
27
|
"eslint-config-custom": "*",
|
28
|
+
"jest": "^29.6.4",
|
29
|
+
"jest-environment-jsdom": "^29.6.4",
|
23
30
|
"react-feather": "^2.0.10",
|
31
|
+
"ts-jest": "^29.1.1",
|
24
32
|
"tsconfig": "*",
|
25
33
|
"tsup": "^6.7.0",
|
26
34
|
"tsup-config": "*",
|
27
35
|
"typescript": "^4.5.2"
|
28
36
|
},
|
29
37
|
"dependencies": {
|
38
|
+
"deep-diff": "^1.0.2",
|
39
|
+
"event-emitter": "^0.3.5",
|
30
40
|
"react-beautiful-dnd": "^13.1.1",
|
41
|
+
"react-hotkeys-hook": "^4.4.1",
|
31
42
|
"react-spinners": "^0.13.8",
|
32
43
|
"use-debounce": "^9.0.4"
|
33
44
|
},
|