-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.73 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
{
"name": "logical-everywhere",
"version": "1.1.1",
"description": "Collection of utilities to work around features that are not fully compatible with logical properties and values (such as translateX, translateY or getBoundingClientRect).",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"homepage": "https://github.com/DerZade/logical-everywhere#readme",
"repository": {
"type": "git",
"url": "https://github.com/DerZade/logical-everywhere.git"
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/DerZade/logical-everywhere/issues",
"email": "derzade@gmail.com"
},
"scripts": {
"build": "tsup --tsconfig ./tsconfig.json --dts --minify --format cjs,esm ./src/index.ts",
"lint": "eslint --ext .js,.ts ./src",
"fmt": "prettier --write .",
"test": "npm run build && vitest run",
"coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"keywords": [
"utilities",
"logical",
"property",
"properties",
"inline",
"block",
"ltr",
"rtl",
"writing-mode"
],
"author": "Jonas Schade <derzade@gmail.com>",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@vitest/coverage-c8": "^0.29.7",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"jsdom": "^22.1.0",
"prettier": "^2.8.5",
"puppeteer": "^22.12.0",
"tsup": "^6.7.0",
"typescript": "^5.0.2",
"vite": "^4.2.1",
"vitest": "^0.33.0"
}
}