-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.52 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
63
64
65
66
67
68
{
"name": "@activetheory/fit-text",
"version": "1.0.2",
"description": "Fit text to a container, a precise width or height, or fit to a single line and trim the overflow",
"main": "./src/index.js",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./src/index.d.ts",
"default": "./src/index.js"
}
},
"types": "./src/index.d.ts",
"scripts": {
"dev": "vite demo",
"demo:build": "vite build --outDir ../dist --emptyOutDir --base ./ ./demo/",
"format": "prettier --write --ignore-unknown",
"release": "release-it",
"prepare": "husky"
},
"sideEffects": false,
"type": "module",
"author": {
"name": "Active Theory",
"email": "[email protected]",
"url": "https://activetheory.net"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/activetheory/fit-text.git"
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"printWidth": 200,
"quoteProps": "as-needed",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"prettier": "^3.4.2",
"release-it": "^18.1.1",
"vite": "^6.0.9"
},
"release-it": {
"github": {
"release": true
},
"npm": {
"publish": true
}
},
"lint-staged": {
"**/*": [
"npm run format"
]
}
}