-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.22 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.22 KB
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
69
70
71
{
"name": "@toolwind/v4-modifier-parser",
"version": "0.0.3",
"description": "v4-modifier-parser for Tailwind CSS provides a simple API for working with CSS anchor positioning, enabling flexible, declarative positioning relative to custom v4-modifier-parser.",
"type": "module",
"source": "index.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json",
"./index": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"unpkg": "./dist/index.umd.js",
"files": [
"dist",
"LICENSE",
"README.md",
"patches"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsdown index.ts --dts --format cjs,esm",
"dev": "tsdown index.ts --dts --watch --format cjs,esm",
"prepublishOnly": "npm run build",
"postinstall": "node -e \"if(require('fs').existsSync('.git')){require('child_process').execSync('patch-package', {stdio:'inherit'})} else {console.log('Skipping patch-package for @toolwind/v4-modifier-parser: not in a git repository.')}\""
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toolwind/v4-modifier-parser.git"
},
"keywords": [
"css",
"utility-classes",
"parse",
"parser",
"tailwind",
"tailwindcss"
],
"author": "Brandon McConnell",
"license": "MIT",
"bugs": {
"url": "https://github.com/toolwind/v4-modifier-parser/issues"
},
"homepage": "https://github.com/toolwind/v4-modifier-parser#readme",
"devDependencies": {
"@types/node": "^22.15.3",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"npm-run-all": "^4.1.5",
"patch-package": "^8.0.0",
"tailwindcss4": "https://gitpkg.vercel.app/tailwindlabs/tailwindcss/packages/tailwindcss?v4.1.5",
"tsdown": "^0.10.1",
"typescript": "^5.8.3"
},
"peerDependencies": {
"tailwindcss": ">=3.0.0 || >=4.0.0"
}
}