mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-27 07:08:53 +03:00
WIP
This commit is contained in:
parent
eb61d44f9f
commit
b01893d07d
2
packages/cli/.gitignore
vendored
2
packages/cli/.gitignore
vendored
@ -1,2 +1,2 @@
|
||||
# debug builds of NAPI
|
||||
*.node
|
||||
/*.node
|
||||
|
@ -1,10 +0,0 @@
|
||||
target
|
||||
Cargo.lock
|
||||
.cargo
|
||||
.github
|
||||
npm
|
||||
test
|
||||
.eslintrc
|
||||
.prettierignore
|
||||
rustfmt.toml
|
||||
*.node
|
24
packages/cli/jsr.json
Normal file
24
packages/cli/jsr.json
Normal file
@ -0,0 +1,24 @@
|
||||
{
|
||||
"$schema": "https://jsr.io/schema/config-file.v1.json",
|
||||
"name": "@tauri-apps/cli",
|
||||
"version": "2.0.3-alpha.4",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
"exports": {
|
||||
".": "./index.js",
|
||||
"./tauri": "./tauri.js",
|
||||
"./main": "./main.js"
|
||||
},
|
||||
"publish": {
|
||||
"include": [
|
||||
"CHANGELOG.md",
|
||||
"README.md",
|
||||
"index.js",
|
||||
"index.d.ts",
|
||||
"main.js",
|
||||
"main.d.ts",
|
||||
"tauri.js",
|
||||
"LICENSE*",
|
||||
"package.json"
|
||||
]
|
||||
}
|
||||
}
|
1
packages/cli/npm/win32-x64-msvc/index.js
Normal file
1
packages/cli/npm/win32-x64-msvc/index.js
Normal file
@ -0,0 +1 @@
|
||||
module.exports = require('./cli.win32-x64-msvc.node')
|
10
packages/cli/npm/win32-x64-msvc/jsr.json
Normal file
10
packages/cli/npm/win32-x64-msvc/jsr.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"$schema": "https://jsr.io/schema/config-file.v1.json",
|
||||
"name": "@tauri-apps/cli-win32-x64-msvc",
|
||||
"version": "2.0.3-alpha.4",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
"exports": "./index.js",
|
||||
"publish": {
|
||||
"include": ["cli.win32-x64-msvc.node", "package.json", "README.md"]
|
||||
}
|
||||
}
|
@ -46,6 +46,16 @@
|
||||
"engines": {
|
||||
"node": ">= 10"
|
||||
},
|
||||
"files": [
|
||||
"CHANGELOG.md",
|
||||
"README.md",
|
||||
"index.js",
|
||||
"index.d.ts",
|
||||
"main.js",
|
||||
"main.d.ts",
|
||||
"tauri.js",
|
||||
"LICENSE*"
|
||||
],
|
||||
"bin": {
|
||||
"tauri": "./tauri.js"
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user