-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.98 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.98 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@naverpay/pite",
"author": "@NaverPayDev/frontend",
"version": "2.3.1",
"description": "A Vite bundler package for libraries",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/NaverPayDev/pite.git"
},
"keywords": [
"naver",
"naverpay",
"naver financial",
"vite",
"libraries"
],
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf ./dist",
"prepublish": "cp package.json dist/ && cp README.md dist/ && node scripts/replace.mjs",
"build:dts": "tsup",
"build": "pnpm run clean && vite build",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"lint:fix": "pnpm run lint --fix",
"prettier": "prettier --check '**/*.{json,yaml,md,ts,tsx,js,jsx}'",
"prettier:fix": "prettier --write '**/*.{json,yaml,md,ts,tsx,js,jsx}'",
"markdownlint": "markdownlint '**/*.md' '#.changeset' '#**/CHANGELOG.md'",
"markdownlint:fix": "markdownlint --fix '**/*.md' '#.changeset' '#**/CHANGELOG.md'",
"release:canary": "changeset publish --no-git-tag --directory dist",
"release": "changeset publish --directory dist"
},
"lint-staged": {
"**/*.{json,yaml,md,ts,tsx,js,jsx}": "prettier --check",
"**/*.{ts,tsx,js,jsx}": "eslint"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.25.9",
"@naverpay/browserslist-config": "^2.0.0",
"@naverpay/publint": "^0.0.6",
"@rollup/plugin-babel": "^6.0.4",
"babel-plugin-polyfill-corejs3": "^0.11.0",
"browserslist": "^4.24.2",
"browserslist-to-esbuild": "^2.1.1",
"chalk": "^5.4.1",
"cosmiconfig": "^9.0.0",
"glob": "^11.0.1",
"publint": "^0.3.4",
"rollup-preserve-directives": "^1.1.3",
"rollup-plugin-visualizer": "^5.14.0",
"builtin-modules": "^5.0.0",
"builtins": "^5.1.0",
"sass-embedded": "^1.83.4"
},
"peerDependencies": {
"tsup": ">=8.3.5",
"vite": ">=6.0.10"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@naverpay/eslint-config": "^1.0.7",
"@naverpay/markdown-lint": "^0.0.3",
"@naverpay/prettier-config": "^1.0.0",
"@types/node": "^22.10.2",
"eslint": "^8.57.0",
"lefthook": "^1.8.2",
"lint-staged": "^15.2.10",
"typescript": "^5.6.3"
},
"packageManager": "pnpm@9.12.3",
"engines": {
"node": "22.11.0",
"pnpm": "9.12.3"
},
"sideEffects": false
}