-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
53 lines (53 loc) · 1.54 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
{
"name": "nanopop",
"version": "2.4.2",
"description": "Ultra tiny, opinionated, positioning engine.",
"author": "Simon Reinisch <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"main": "./dist/nanopop.umd.js",
"module": "./dist/nanopop.mjs",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/nanopop.mjs",
"require": "./dist/nanopop.umd.js",
"types": "./dist/src/index.d.ts"
}
},
"keywords": [
"positioning",
"popper",
"utility",
"positioning engine"
],
"files": [
"src",
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview --port 3005 --outDir .",
"lint": "eslint ./{src,tests}/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"test": "playwright test",
"test:ci": "npm run lint:fix && npm run build && npm test"
},
"homepage": "https://github.com/Simonwep/nanopop#readme",
"bugs": "https://github.com/Simonwep/nanopop/issues",
"repository": {
"type": "git",
"url": "https://github.com/Simonwep/nanopop.git"
},
"devDependencies": {
"@playwright/test": "1.41.0",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
"eslint": "8.56.0",
"typescript": "5.3.3",
"vite": "5.0.11",
"vite-plugin-banner": "0.7.1",
"vite-plugin-dts": "3.7.1"
}
}