-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.77 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
{
"name": "swash",
"description": "A React framework for drag and drop interactions",
"version": "1.0.0",
"author": "Luiz Fernando F. G. Valle <luizffgv10@gmail.com>",
"bugs": {
"url": "https://github.com/luizffgv/swash/issues"
},
"devDependencies": {
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^8.57.0",
"@types/react": "^18.3.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-compiler": "^0.0.0-experimental-53bb89e-20240515",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unicorn": "^53.0.0",
"globals": "^15.2.0",
"rimraf": "^5.0.5",
"tsc-alias": "^1.8.8",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./lib/index.js"
},
"./*": {
"types": "./types/*.d.ts",
"default": "./lib/*"
}
},
"files": [
"lib/**/*",
"types/**/*"
],
"homepage": "https://github.com/luizffgv/swash#readme",
"license": "MIT",
"main": "lib/index.js",
"peerDependencies": {
"react": "^18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luizffgv/swash.git"
},
"scripts": {
"build": "tsc && tsc-alias",
"generate-types": "tsc -p tsconfig-types.json && tsc-alias -p tsconfig-types.json",
"lint": "eslint .",
"prepare": "npm run lint && npm run rebuild && npm run regenerate-types",
"rebuild": "rimraf lib tsconfig.tsbuildinfo && npm run build",
"regenerate-types": "rimraf types tsconfig-types.tsbuildinfo && npm run generate-types",
"test": "echo \"Error: no test specified\" && exit 1"
},
"type": "module",
"types": "types/index.d.ts",
"dependencies": {
"ekranoplan": "github:luizffgv/ekranoplan#2744eae"
}
}